[Flutter] 디버그 벳지 제거

조경호·2022년 5월 23일
0

Flutter

목록 보기
4/11

개발 시 디버그 벳지가 보이는데 거슬리면 옵션으로 끌 수 있다.

main() 함수 위젯 옵션에 debugShowCheckedModeBanner: false 를 추가해주자.

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter 3.0 Instagram Clone',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Center(child: Text("3.0")),
    );
  }
}
profile
개발자

0개의 댓글