indexedStack 사용법
- class 내에서 int _selectedIndex = 0; 선언
- index: _selectedIndex, 으로 보여줄 children 세팅
- bottomNavigation의 ontap으로 클릭시 보여줄 index 설정
class MainScreens extends StatefulWidget {
const MainScreens({Key? key}) : super(key: key);
@override
_MainScreensState createState() => _MainScreensState();
}
class _MainScreensState extends State<MainScreens> {
int _selectedIndex = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
body: IndexedStack(
index: _selectedIndex,
children: [
Container(
color: Colors.orange[100],
child: Center(
child: Text(
'IndexedStack 1',
style: TextStyle(fontSize: 20, color: Colors.black),
),
),
),
Container(
color: Colors.redAccent[100],
child: Center(
child: Text(
'IndexedStack 2',
style: TextStyle(fontSize: 20, color: Colors.black),
),
),
)
],
),
bottomNavigationBar: BottomNavigationBar(
items: [
BottomNavigationBarItem(
icon: Icon(CupertinoIcons.home),
label: '홈',
),
BottomNavigationBarItem(
icon: Icon(CupertinoIcons.chat_bubble),
label: '채팅',
)
],
onTap: (index) {
setState(() {
_selectedIndex = index;
});
},
currentIndex: _selectedIndex,
),
);
}
}
728x90
'Usage > Flutter' 카테고리의 다른 글
Extension methods 확장 메서드 사용하기 (0) | 2021.09.08 |
---|---|
수정가능한 프로필 이미지 만들기 (이미지 위에 버튼) (0) | 2021.08.29 |
[Flutter] GetX를 활용해서 stateless에서 애니메이션 사용하기 (0) | 2021.07.01 |
[Flutter] 리스트의 항목을 클릭하여 디테일 페이지로 이동할때 hero 애니메이션 적용 (0) | 2021.07.01 |
[Flutter] Json 데이터를 GetX를 활용하여 list view, detail view 만들기 (0) | 2021.07.01 |