728x90
๋ฐ์ํ
ListView.builder์ ์ฌ์ฉํด์ ๊ตฌํํ๋ค๊ฐ ๋ณธ ๋ง์ฃผํ ์๋ฌ์ด๋ค. ๋ฆฌ์คํธ๋ฅผ 5๊ฐ ์ ๋๋ฅผ ๋ง๋ค์ด์ ๋ฐ๋ณต์์ผฐ๋๋ฐ
์๋ฎฌ๋ ์ดํฐ ํ๋ฉด์ ๋ ธ๋ ๋ฐํ์ ์์ ๊ฐ์ ์๋ฌ๊ฐ ๋ฌ๋ค.
โพ ํด๊ฒฐ๋ฐฉ์
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('์์ ์ฒด์กํ๊ณผ'),
centerTitle: true,
backgroundColor: Colors.white,
elevation: 0,
leading: IconButton(
icon: Icon(Icons.arrow_back),
color: Colors.grey,
iconSize: 25.0,
onPressed: () {},
),
actions: <Widget>[
Container(....)
]),
resizeToAvoidBottomInset: false,
body: SingleChildScrollView(child: const boxbody()),
bottomNavigationBar: navbar(context),
);
}
resizeToAvoidBottomInset: false ์ ๋ฃ์ด์ฃผ๋ฉด ๋ฉ๋๋ค.
728x90