Files
DMZJ_F/lib/modules/common/comment/comment_controller.dart
2026-03-07 17:24:59 +08:00

11 lines
323 B
Dart

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);
}