mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
16 lines
318 B
Dart
16 lines
318 B
Dart
import 'package:get/get.dart';
|
|
|
|
class SearchResultController extends GetxController {
|
|
String? keyword;
|
|
|
|
RxList<int> count = List.generate(5, (_) => -1).toList().obs;
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
if (Get.parameters.keys.isNotEmpty) {
|
|
keyword = Get.parameters['keyword'];
|
|
}
|
|
}
|
|
}
|