You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
369 B
21 lines
369 B
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class MyFriendController extends GetxController with GetSingleTickerProviderStateMixin {
|
|
|
|
late TabController tabController;
|
|
|
|
final sum = 0.obs;
|
|
|
|
@override
|
|
void onInit() {
|
|
super.onInit();
|
|
|
|
tabController = TabController(length: 4, vsync: this);
|
|
}
|
|
|
|
getFriendList() async {
|
|
|
|
}
|
|
|
|
}
|