[Flutter] BottomNavigationBar
BottomNavigationBar : 하단부분에 위치한 네비게이션 첫 로딩 시 또는 홈 아이콘 클릭 시 main.dart 더보기 import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. static const String _title = '플러더 코드 샘플'; @override Widget build(BuildContext context) { return MaterialApp( title: _title, // theme: ThemeData( // primarySwatch: Col..
2020.12.26