Flutter MVVM ~Bottom Navigation Bar~
MVVM設計でのBottomNavigationBar実装について
環境
ステート管理: riverpod
アーキテクチャー: MVVM
想定フォルダー構成:
lib
|_ ui
|_ nav _ bottom_nav.dart
|_ bottom_nav_view_model.dart
|_ home_page.dart
|_ setting_page.dart
実装方法
基本的なMVVMの状態管理方法として、変数や関数はViewModelが保持することが前提。
Viewは基本的にStatelessWidgetとするため画面の更新方法がない。
そのためChangeNotifierで画面に更新を通知し、再描画を行う手法を取る。
- bottom_nav_view_model.dart
final bottomNavVMProvider = ChangeNotifierProvider((ref) => BottomNavViewModel());
class BottomNavViewModel extends ChangeNotifier {
int _currentIdx = 0;
int get currentIdx => _currentIdx;
void updateIdx(int newIdx){
_currentIdx = newIdx;
notifyListener();
}
}
- bottom_nav.dart
class HomeView extends ConsumerWidget {
const HomeView({Key? key}): super(key: key);
Widget build(BuildContext context, WidgetRef ref) {
// 基本的にwatchを使う
final vm = ref.watch(bottomNavVMProvider);
List _widgets = [
HomePage(),
SettingsPage(),
];
return Scaffold(
body: _widgets[vm.currentIdx]
bottomNavigationBar: BottomNavigationBar(
items: [
BottomNavigationBarItem(
icon: Icon(Icons.book),
label: 'Home',
),
BottomNavigationBarItem(
icon: Icon(Icons.setting),
label: 'Settings',
),
]
//onTapはFunction(int)型を取るため、値がupdateIdxに渡せされる
onTap: vm.updateIdx,
currentIndex: vm.currentIdx,
);
)
}
}
以上。
Author And Source
この問題について(Flutter MVVM ~Bottom Navigation Bar~), 我々は、より多くの情報をここで見つけました https://zenn.dev/christian_yh/articles/bbb5b4a121db46著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol