분류 전체보기 (12) 썸네일형 리스트형 flutter CustomPaint CustomPainter 화면을 직접 그릴 때 사용한다. 기존의 UI로 만들기 어려운 화면을 만들고 싶을 때 유용하다. Canvas : 그림을 그리는 동작이 기록된다. Paint : 그림의 특성들을 저장한다. CustomPainter : Canvas, Paint를 담아낸다. CustomPaint : CustomPainter의 상위 위젯이다. CustomPainter 구현 class MyPainter extends CustomPainter{ @override void paint(Canvas canvas, Size size) { Paint paint = Paint() // Paint 클래스는 어떤 식으로 화면을 그릴지 정할 때 사용 ..color = Colors.deepPurpleAccent // 선의 색 .. flutter listview (flutter codlabs) https://codelabs.developers.google.com/codelabs/first-flutter-app-pt1#0 Write your first Flutter app, part 1 | Google Codelabs Write your first Flutter app, part 1 1. Introduction Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Flutter works with existing code, is used by developers and orga codelabs.devel.. 이전 1 2 다음