IT12 flutter | 플러터 이미지 오토 슬라이드 Flutter Swiper 출처: https://www.youtube.com/watch?v=sW9lla-D09A 대략 레이아웃 기본 기능 constructors swiper 점 색깔 바꾸는 법 (dot color change) https://stackoverflow.com/questions/62737307/how-to-change-swiper-pagination-color-in-flutter How to Change Swiper pagination color in Flutter? I am using Swiper as a slider in Flutter Activity i want to change Swiper dot indicator color from Blue(default) to custom, but i am unable to.. 2021. 11. 18. Flutter | UI 기능별 코드 정리 보호되어 있는 글 입니다. 2021. 11. 18. flutter | final ? const?| 문법 정리 const & final 의 공통점 둘 다 "상수" 선언 방법 final string a = "final"; const string b = "const"; 이후에 a = "final2"; b = "const2"; 이와 같이 값을 변화시키려고 하면 에러가 난다. why? const 영상에서 아래 구문에서 에러가 났는데 const int myConst = 5; [Only static fields can be declared as const.] 라고 에러 메세지가 나왔다. const가 사용되는 곳 top level static local → 이는 const 인스턴스 필드가 없음을 의미한다 특징 f.. 2021. 10. 14. [실습1] Flutter "Hello world" 출력 import 'package:flutter/material.dart'; void main() { runApp(Center( child: Text( "Hello World!", textDirection: TextDirection.ltr, ) ) ); } 2021. 6. 24. 이전 1 2 3 다음