ํ๋ฉด ๋ ์ด์์ ๊ตฌ์ฑ : ์๋จ๋ฐ, ๋์คํ๋ ์ดTextbox, ํคํจ๋
์ด๊ฑฐ ์ ์๋ฆฌ์ฆ์ ์ ์ฅ์ด ์๋๋..
Expanded(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(" Calculator", textAlign: TextAlign.center, style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold)),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
IconButton(onPressed: () {}, icon: Icon(Icons.close_fullscreen)),
IconButton(onPressed: () {}, icon: Icon(Icons.check_box_outline_blank)),
IconButton(onPressed: () {}, icon: Icon(Icons.close))
],
)
],
),flex: 1,
),
Expanded(
child:
Center(
child: Container(
alignment: Alignment.bottomRight,
height: 100,
width: 300,
child:
Text(
'$_state',
textAlign: TextAlign.right,
style: TextStyle(
color: Colors.black,
fontSize: 50,
fontWeight: FontWeight.bold,
),
),
),
),flex: 3,
),
๋งฅ๋ถ์์ ์ ๊ณตํ๋ Calculator app ๊ณ์ฐ๊ธฐ ๋ ์ด์์์ ์ฐธ๊ณ ํ์ฌ ๊ณ์ฐ๊ธฐ ๋ ์ด์์์ ๊ทธ๋ ค๋ณด๋ ค๊ณ ํ๋ค.
๊ธฐ๋ฅ ๋ฃ๊ธฐ๋ ๋ค์์ฃผ์~!