728x90 반응형 플러터 앱바1 2021.12.29_04.AppBar 1.Typography 1.1 글씨 색 조절 (기본) import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: Text('앱임'),), body: SizedBox( child: Text('안녕하세요', style: TextStyle(color: Colors.red), ), ), ) ); } } .. 2021. 12. 29. 이전 1 다음 728x90 반응형