13 lines
189 B
Dart
13 lines
189 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
class TabState {
|
|
PageController? pageController;
|
|
|
|
late int currentPage;
|
|
|
|
TabState() {
|
|
///Initialize variables
|
|
currentPage = 0;
|
|
}
|
|
}
|