coding etude
[widget] IndexedStack 본문
https://api.flutter.dev/flutter/widgets/IndexedStack-class.html
bottomNavigationBar 를 사용하여 페이지를 전환하면 페이지가 Re-build 되면서 기존의 내용이 초기화 된다.
이런 상황에서 데이터의 초기화를 막기위해 IndexedStack 위젯을 사용하면 된다.
body: IndexedStack(
index: 0, // 첫페이지의 index
children: [
// 페이지들
]
),
bottomNavigationBar: Container(); // 네비게이션바 작성
'Flutter(Dart)' 카테고리의 다른 글
[plugin] DotsIndicator(슬라이더 표시) (0) | 2022.10.05 |
---|---|
[plugin] GetX (flutter 상태관리) (0) | 2022.09.29 |
[Error] No TabController for TabBar (0) | 2022.09.29 |
[flutter] elevation (0) | 2022.09.29 |
[flutter]flutter란? (0) | 2021.03.23 |