플러터1 플러터 - 삼각형 모양 View 그리기 Flutter에서 삼각형을 그리는 방법은 여러 가지가 있는데 그중 가장 일반적인 방법 중 하나는 CustomPaint 위젯과 CustomPainter 클래스를 사용하는 것이다. 결과화면 전체코드 import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: Text('Triangle Example'), ), body: Center( child: TriangleView(), ), ), ).. 2023. 6. 11. 이전 1 다음