no image
[Flutter]primarySwatch 색상 선택 시 주의사항
이런 식으로 Colors.white를 사용하면 에러가 난다. 에러를 읽어보면 Color는 MaterialColor 타입의 하위타입이 아니라서 그렇다는데, white의 내부 구성을 보면 자료형이 Color로 되어있다는 것을 알 수 있다. 그렇다면 primarySwatch에서 정상작동하는 blue는 어떻게 되어있을까? 신기하게도 MaterialColor자료형으로 선언되어 있는 모습을 확인할 수 있다. 결론은 primarySwatch에서 사용할 수 있는 색깔은 MaterialColor타입으로 선언되어 있는 색깔만 사용할 수 있다는 것. What is the difference between primaryColor and primarySwatch in Flutter? In Flutter, one can appl..
2020.10.02
[Flutter]상수 리스트 (const List) 선언 시 에러
static const List _widgetOptions = [ HomePage(), //여기 중요 Text( 'Index 1: Search', ), Text( 'Index 2: Account', ), ]; 이런식으로 _widgetOptions 리스트를 선언했더니 1. The values in a const list literal must be constants. Try removing the keyword 'const' from the list literal. - const 리스트 리터럴의 값은 상수여야합니다. 리스트 리터럴에서 키워드 'const'를 제거해보십시오. 2. The constructor being called isn't a const constructor. Try using 'new' ..
2020.10.02
[Flutter]Row 및 Column에서 Alignment 작동안함
Why CrossAxisAligment not Working in Flex,Row and Column? class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text( 'Flutter Demo' ), ),... stackoverflow.com 여기 글에서 SizedBox.expand를 추가하고 해결되었다. 이유는 Row don't take all the vertical space available by default. It takes only the needed space. (but it takes all the horizontal sp..
2020.09.28
no image
Flutter Stateless Widget
이 글은 https://www.youtube.com/watch?v=wE7khGHVkYY&list=PLOU2XLYxmsIJ7dsVN4iRuA7BT8XHzGtCr&index=59 Flutter Widget 101 Ep 시리즈의 영상을 번역하면서 공부했습니다. Stateless Widget 중요개념 : Flutter로 작성한 앱은 widget tree로 생각하자. 그러면 Widget 이란 무엇일까? 단순한 블루프린트입니다. Widget을 조각이라 보면 그 조각들을 구성함으로써 앱을 만드는 것입니다. Widget이 블루프린트라면 뭘 위해 구성되는 것일까? Element를 위해구성됩니다. Element : Widget에 의해 만들어지고 실제로 화면에 마운트 되는 위젯입니다. (실제로 스크린에 배치되는 역할.) E..
2020.06.27
Flutter 정리
저도 많이 미숙하고, 공부를 해나가고 있는 입장이기에 많이 부족할 수도 있습니다. 잘못된 부분 지적해주시면 정말 감사하겠습니다. 앞으로 다룰 내용은 다음과 같습니다. 1. Stateless Widget 2. Stateful Widget 3. Build Context / of() method 4. provider
2020.06.27