mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
10 lines
292 B
Dart
10 lines
292 B
Dart
import 'package:PiliPlus/models/common/search_type.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class SearchResultController extends GetxController {
|
|
String keyword = Get.parameters['keyword'] ?? '';
|
|
|
|
RxList<int> count =
|
|
List.generate(SearchType.values.length, (_) => -1).toList().obs;
|
|
}
|