์๋ FlatButton์ Expanded๋ก ๋ฉํํ ๋ ์๋จ Expanded์์ ํ์นธ ๋๊ณ ALT + ENTER๋ฅผ
ํด์ค์ผ ๋ฉ๋ด๊ฐ ํ์ฑํ
Angela ์ค์ด ๋งํ๊ธธ AndroidStudio์ ๋ณ๋ ์ (quirk)
์๊ณ ์์ผ๋ฉด ์ข์ผ๋ฉด ๊ฟํ!
Function ํ์ ๊ณผ return
๋ณ์ Void ์ ์ธ์ ๋ฐ์ดํฐ ํ์ ์ด ์์ ๋
return ๊ฐ ์์ผ๋ฉด ๊ทธ ๊ฐ์ ๋ง๋ ๋ฐ์ดํฐ ํ์ ์ ์ธ
๊ธฐ๋ณธ JavaScript๋ฅผ ๋ฐ๋๋ผ ์คํฌ๋ฆฝํธ๋ผ๊ณ ๋ถ๋ฅด๋ฏ์ด
๊ธฐ๋ณธ ํ์ ์ ๋ฐ๋ฆฌ๋ ํ์ ์ด๋ผ ๋ถ๋ฅด๋๊ฑด๊ฐ ์ด๊ฑด ํ์ธ ํ์
ํ์ ์ฒซ๋ฒ์งธ ํ์ = no input, no output
void getMilk(){
};
ํ์ 2๋ฒ์งธ ํ์ = input, no output
void getMilk(int bottles){
double cost = bottles * 1.5;
};
ํ์ 3๋ฒ์งธ ํ์ , return ๊ฐ ํ์ ์ ์ธ = input, output
int getMilk (int money){
return money -2;
}
๋ณ์ ์ด๋ฆ์ ํ๋ผ๋ฏธํฐ๋ก ๋ฃ์์์๋ {}๋ก ๋ฉํ
์์ ฏ ํด๋์ค์ธ Expanded ํ์ (ํ๋ฉด ๊ณต๊ฐ์ ์ฑ์ฐ๋ ์์ ฏ)์ผ๋ก ๋ง๋ค์ด์ง function
return๋ Expanded ํ์ ์ผ๋ก ํด์ผํจ
์ดํด๊ฐ ๋ ํ์ํด์ 100% ์ดํด ํ ์ ๋ฐ์ดํธ ํ ๊ป์ :)
'ํ๋ฌํฐ (Flutter)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
children: <Widget>[] , Dart Classes and oObjects,Dart constructors (0) | 2020.04.25 |
---|---|
DART => ํ์ดํ ์ฝ๋ ์๋ฏธ (0) | 2020.04.23 |
setState / ํจํค์ง ํ์ฉ (0) | 2020.04.23 |
๋ค์ด๋๋ฏน ํ์ (dynamic type system) ์ ๋ฆฌ (0) | 2020.04.22 |
pubspec.yaml ํ๋ฌํฐ ํฐํธ ์ถ๊ฐ ํ๊ธฐ (0) | 2020.04.22 |