1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Files
samples/jsonexample/lib/main.dart
Miguel Beltran 93db48966c Explicit import for Platform and kIsWeb (#1898)
Following the ideas in flutter/website#7798 I have changed the imports
needed for Platform and kIsWeb to be explicitly named.

## Pre-launch Checklist

- [ ] I read the [Flutter Style Guide] _recently_, and have followed its
advice.
- [ ] I signed the [CLA].
- [ ] I read the [Contributors Guide].
- [ ] I updated/added relevant documentation (doc comments with `///`).
- [ ] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-devrel
channel on [Discord].

<!-- Links -->
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[CLA]: https://cla.developers.google.com/
[Discord]: https://github.com/flutter/flutter/wiki/Chat
[Contributors Guide]:
https://github.com/flutter/samples/blob/main/CONTRIBUTING.md
2023-06-23 13:24:11 +10:00

91 lines
2.3 KiB
Dart

// 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' show Platform;
import 'package:flutter/foundation.dart' show kIsWeb;
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 windowWidth = 1200;
const double windowHeight = 800;
void setupWindow() {
if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) {
WidgetsFlutterBinding.ensureInitialized();
setWindowTitle('JSON Sample');
setWindowMinSize(const Size(windowWidth, windowHeight));
}
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorSchemeSeed: Colors.blue,
useMaterial3: true,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({super.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(),
],
),
),
),
);
}
}