flutter 뚝딱뚝딱...
1. 텍스트에 스타일 설정하기 Text(style: TextStyle(key: value, key: value, ...)) 2. 색상 설정하기 1. Colors.색상 2. Color(0xff색상코드) 3. Color.fromRGBO(r, g, b, opacity) 3. 버튼 넣기 1. TextButton() 2. IconButton() 3. ElevatedButton() import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) {..
2024.03.10