반응형 appbar 삭제1 [ Flutter ] 플러터 appbar 색상 변경하기 / primarySwatch 속성 appbar 부분 배경색이 존재하지 않는다. 플러터 appbar에 색상을 추가해주려면,them 속성에서 primarySwatch를 본인이 원하는 색으로 추가해 준다.primarySwatch: Colors.blue 수정 전 main.dart 코드import 'package:flutter/material.dart';void main() { runApp(const MyApp());}class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp(.. 2023. 8. 31. 이전 1 다음 반응형