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(),
body: Container(),
bottomNavigationBar: BottomAppBar(),
),
);
}
}'Programing > Flutter' 카테고리의 다른 글
| 플러터 lint 제거 옵션 (0) | 2024.07.15 |
|---|---|
| 플러터 설치 방법 (0) | 2024.07.15 |