1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

jsonexample: Update lint rules, rebuild runners (#826)

This commit is contained in:
Brett Morgan
2021-06-08 09:57:21 +10:00
committed by GitHub
parent 26e0e215cf
commit 5cdab9c44d
59 changed files with 1727 additions and 158 deletions

View File

@@ -5,9 +5,11 @@
import 'package:flutter/material.dart';
import 'package:jsonexample/tab_pages.dart';
void main() => runApp(MyApp());
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
@@ -46,7 +48,7 @@ class MyHomePage extends StatelessWidget {
],
),
),
body: SafeArea(
body: const SafeArea(
bottom: false,
child: TabBarView(
children: [