15 lines
209 B
Dart
15 lines
209 B
Dart
import 'package:get/get.dart';
|
|
|
|
class TabbarPageController extends GetxController {
|
|
// TabbarPageController
|
|
@override
|
|
void onInit(){
|
|
super.onInit();
|
|
}
|
|
|
|
|
|
void onItemTapped(int index) {
|
|
|
|
}
|
|
|
|
} |