Project/후크(Flutter)

앱바안에 텍스트 넣는법/설정 등등, 바틈네비게이션 크기조절하는법, 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('앱바'), centerTitle: false, elevation: 0.0, ), body:Text('안녕'), bottomNavigationBar: Bottom..
윤재에요
'Project/후크(Flutter)' 카테고리의 글 목록