前提・実現したいこと
FlutterでRiverpod(flutter_hooks)+StateNotifierを用いてbottomNavigationBarの状態を管理しようとしています。ファイル構成は【widget、state、controller】の3つに分けています。
発生している問題・エラーメッセージ
bottomNavigationbarのボタンを押しても初期設定された画面から変更されません。
コントローラー部分の関数内では渡されたindex値がindexStateに代入されているが、関数処理後にuseProviderを用いて呼び出した変数の値に反映されない状況です。
該当のソースコード
dart
11.bottomNavigaitonBar Widget部分 2 3import 'package:hooks_riverpod/hooks_riverpod.dart'; 4import 'package:flutter_hooks/flutter_hooks.dart'; 5 6class ScreenBottomNavigationBar extends HookWidget { 7 const ScreenBottomNavigationBar({Key? key}) : super(key: key); 8 9 Widget build(BuildContext context) { 10 final indexStateNav = useProvider(bottomNavigationController).indexState; 11 return BottomNavigationBar( 12 onTap: (int index) { 13 context.read(bottomNavigationController.notifier).getCurrentIndex(index); 14 print(indexStateNav); 15 }, 16 currentIndex: indexStateNav, 17 items: [ 18 BottomNavigationBarItem( 19 icon: Icon(Icons.rate_review), 20 label: '入力', 21 ), 22 BottomNavigationBarItem( 23 icon: Icon(Icons.analytics), 24 label: '分析', 25 ), 26 BottomNavigationBarItem( 27 icon: Icon(Icons.settings), 28 label: '設定', 29 ), 30 ], 31 ); 32 } 33}
dart
12.state部分 2 3class ScreenBottomNavigationBarState { 4 int indexState; 5 ScreenBottomNavigationBarState({required this.indexState}); 6}
dart
13.controller部分 2 3import 'package:hooks_riverpod/hooks_riverpod.dart'; 4import 'package:state_notifier/state_notifier.dart'; 5 6final bottomNavigationController = StateNotifierProvider<BottomNavigationController, ScreenBottomNavigationBarState>( 7 (ref) => BottomNavigationController(), 8); 9 10class BottomNavigationController extends StateNotifier<ScreenBottomNavigationBarState> { 11 BottomNavigationController() : super(ScreenBottomNavigationBarState(indexState: 0)); 12 void getCurrentIndex(int index) { 13 state..indexState = index; 14 } 15}
補足情報(FW/ツールのバージョンなど)
flutter_hooks: ^0.17.0
hooks_riverpod: ^0.14.0+4
state_notifier: ^0.7.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。