mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.3 KiB
90 lines
2.3 KiB
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:jsonexample/tab_pages.dart';
|
|
import 'package:window_size/window_size.dart';
|
|
|
|
void main() {
|
|
setupWindow();
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
const double kWindowWidth = 1200;
|
|
const double kWindowHeight = 800;
|
|
|
|
void setupWindow() {
|
|
if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
setWindowTitle('JSON Sample');
|
|
setWindowMinSize(const Size(kWindowWidth, kWindowHeight));
|
|
}
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Flutter Demo',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
),
|
|
home: const MyHomePage(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class MyHomePage extends StatelessWidget {
|
|
const MyHomePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return DefaultTabController(
|
|
length: 10,
|
|
child: Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('Let\'s parse some JSON'),
|
|
bottom: const TabBar(
|
|
isScrollable: true,
|
|
tabs: [
|
|
Tab(text: 'Basics'),
|
|
Tab(text: 'Conv. Simple'),
|
|
Tab(text: 'Conv. Complex'),
|
|
Tab(text: 'Conv. List'),
|
|
Tab(text: 'Ser. Simple'),
|
|
Tab(text: 'Ser. Complex'),
|
|
Tab(text: 'Ser. List'),
|
|
Tab(text: 'Built Simple'),
|
|
Tab(text: 'Built Complex'),
|
|
Tab(text: 'Built List'),
|
|
],
|
|
),
|
|
),
|
|
body: const SafeArea(
|
|
bottom: false,
|
|
child: TabBarView(
|
|
children: [
|
|
BasicsPage(),
|
|
ConvertedSimplePage(),
|
|
ConvertedComplexPage(),
|
|
ConvertedListPage(),
|
|
SerializableSimplePage(),
|
|
SerializableComplexPage(),
|
|
SerializableListPage(),
|
|
BuiltSimplePage(),
|
|
BuiltComplexPage(),
|
|
BuiltListPage(),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|