forked from google/create-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.dart
44 lines (36 loc) · 1.06 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2019 The Fuchsia 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 'config.dart';
import 'src/briefing/main.dart';
import 'src/counter/main.dart';
import 'src/create/main.dart';
import 'src/paint/main.dart';
import 'src/slider/main.dart';
void main() {
print('Config: $APPLICATION');
switch (APPLICATION) {
case ApplicationConfig.BRIEFING_GMAIL:
case ApplicationConfig.BRIEFING_HACKER_NEWS_PREPARED:
case ApplicationConfig.BRIEFING_HACKER_NEWS_LIVE:
briefingMain();
break;
case ApplicationConfig.COUNTER:
counterMain();
break;
case ApplicationConfig.CREATE_LEGACY:
case ApplicationConfig.CREATE_RESET:
case ApplicationConfig.CREATE_FIRESTORE:
case ApplicationConfig.CREATE_DEMO:
createMain();
break;
case ApplicationConfig.PAINT:
paintMain();
break;
case ApplicationConfig.SLIDER:
sliderMain();
break;
default:
throw StateError('Unknown app $APPLICATION');
}
}