Skip to content

Commit

Permalink
fixed the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushour0 committed Nov 6, 2022
1 parent ed5521e commit 9a227fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/views/group_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class _GroupScreenState extends State<GroupScreen>
controller: tabController,
onTap: (index) {
setState(() {
tabControllerStorage.tabIndex = index;
tabControllerStorage.setIndex = index;
});
},
),
Expand Down Expand Up @@ -514,7 +514,7 @@ class TabControllerStorage {
static int _tabIndex = 0;

int get tabIndex => _tabIndex;
set tabIndex(int index) {
set setIndex(int index) {
_tabIndex = index;
}

Expand Down

0 comments on commit 9a227fb

Please sign in to comment.