본문 바로가기

프로그래밍/Flutter & Dart12

[Flutter] AppBar의 title 왼쪽으로 정렬하기 AppBar의 centerTitle property를 false 로 설정한다. return Scaffold( appBar: AppBar( centerTitle: false, // 여기 title: Text('TITLE'), ), ... - 참고한 글 https://stackoverflow.com/questions/58913303/how-to-place-appbar-title-in-left-side-in-flutter 2022. 11. 24.
[Flutter] build 시 error flutter 최신 버전 확인 https://docs.flutter.dev/development/tools/sdk/releases?tab=macos 1. flutter upgrade로 flutter version 업그레이드 하려 하니 warning 메시지 뜸 https://eunjin3786.tistory.com/417 flutter 버전 참고 Your flutter checkout has local changes that would be erased by upgrading. If you want to keep these changes, it is recommended that you stash them via "git stash" or else commit the changes to a local br.. 2022. 7. 22.
[Flutter] Android Emulator error 에러 메시지 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:checkDebugAarMetadata'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. > Could not resolve com.google.android.gms:play-services-location:16.+. Required by: project :app > project :location > Failed to list versions for com.google.android.gms:play-services-location. > .. 2022. 3. 23.
[Dart] Optional Parameters (Positional, Named) Dart에서 optional parameters를 정하는 2가지 방식이 있다. (positional과 named) Optional parameters는 주어진 function을 호출할 때 지정할 필요가 없는 변수이다. optional parameters는 반드시 required parameter 다음에 선언되어야 한다. 그리고 optional parameter에는 기본값을 사용할 수 있으며, 이는 함수 호출 시 변수를 지정하지 않을 경우 사용된다. Positional parameters in Dart Dart에서 Square brackets [] 은 optional, positional parameter를 명시할 때 사용된다. readFile(String name, [String mode, String .. 2021. 11. 1.
[Flutter] Single-child layout / Multi-child layout / Silver Widgets 위젯 중에 어떤 위젯은 child(Single-child), 어떤 위젯은 children(Multi-child)를 가지는데, 아직 Flutter가 익숙하지 않다 보니 헷갈리는 경우가 있어 이를 정리해 보았다. 참고한 Flutter docs에 각 widget의 설명으로 연결되는 링크가 있어 보기 편한 것 같다. Single-child layout widgets Align AspectRatio Baseline Center ConstrainedBox Container CustomSingleChildLayout Expanded FittedBox FractionallySizedBox IntrinsicHeight IntrinsicWidth LimitedBox Offstage OverflowBox Padding Si.. 2021. 8. 15.