v1.0.1
This commit is contained in:
10
lib/modules/common/comment/comment_controller.dart
Normal file
10
lib/modules/common/comment/comment_controller.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class CommentController extends GetxController
|
||||
with GetSingleTickerProviderStateMixin {
|
||||
final int type;
|
||||
final int objId;
|
||||
CommentController(this.type, this.objId);
|
||||
late TabController tabController = TabController(length: 2, vsync: this);
|
||||
}
|
||||
Reference in New Issue
Block a user