//Widget 생성
//위젯에 속성을 주기 위해서 Container 로 감싸준다.
Widget textSection = Container(
padding: const EdgeInsets.all(32), //말그대로 패딩
//child : 자식 엘리먼트 라고 보면 될 것 같다.
child: Text( //여러 속성이 존재. 1번째 인자는 text 값이고, 2번째는 줄바꿈 설정을 할 건지를 나타낸다.
'Lake Oeschinen lies at the foot of the Blüemlisalp in the Bernese '
'Alps. Situated 1,578 meters above sea level, it is one of the '
'larger Alpine Lakes. A gondola ride from Kandersteg, followed by a '
'half-hour walk through pastures and pine forest, leads you to the '
'lake, which warms to 20 degrees Celsius in the summer. Activities '
'enjoyed here include rowing, and riding the summer toboggan run.',
softWrap: true,
),
);
일단은 이렇게 이해를 했는데, 맞는지 모르겠다.
틀리다면, 수정하도록 하겠다.
comming soon..
'하이브리드 > 플러터' 카테고리의 다른 글
플러터 개발환경 셋팅 (0) | 2019.11.19 |
---|