String interpolationDart

 

 

[Ko]

String interpolation : 변수 앞에 $(달러 사인) 사용, 2단계 이상 depth 변수 사용시는 $ 포함하는 전체 변수를 { } 감싸줌.

 

    var number = 5;

Expanded(

//          flex: 1,

            child: FlatButton(

                onPressed: () {

                  print('Left button got pressed.');

                },

                child: Image.asset('images/aaa$number.png')),

            ),

 

=========================================================

 

[En]

String interpolation: Use $ (dollar sign) in front of the variable, and when using a variable with depth of 2 or more levels, wrap the entire variable including $ with {}.

 

    var number = 5;

Expanded(

//          flex: 1,

            child: FlatButton(

                onPressed: () {

                  print('Left button got pressed.');

                },

                child: Image.asset('images/aaa$number.png')),

            ),

'플러터(Flutter) > 다트(Dart)' 카테고리의 다른 글

[Dart] Functions with return data type  (0) 2020.03.18
[Dart] Functions with argument  (0) 2020.03.18
[Dart] Data Types  (0) 2020.03.18
[Dart] Variables  (0) 2020.03.18
[Dart] Functions  (0) 2020.03.18

+ Recent posts