📱

【Flutter】ヘッダーのDebugタグを非表示にする

に公開

MaterialAppクラスのdebugShowCheckedModeBannerプロパティをfalseにすることで
ヘッダーのDebugタグを非表示にすることができる。

  
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false, // Debugタグを非表示

・・・

Discussion