나만 알 수 없어서 만든 블로그

AppBar 설정 본문

Flutter/에러해결

AppBar 설정

코딩낙타 2021. 10. 2. 22:17

AppBar 설정

AppBar 설정

import 'package:flutter/material.dart';

// Main function은 모든 Flutter 앱의 시작이다.
void main() {
  runApp(
    MaterialApp(
        home: Scaffold(
      appBar: AppBar(
        title: Text('I Am Rich'), //AppBar에 글씨를 넣을 땐 꼭 Text() 사용
      ),
    )),
  );
}