|
1 |
| -// Copyright 2018 The Flutter Architecture Sample Authors. All rights reserved. |
2 |
| -// Use of this source code is governed by the MIT license that can be found |
3 |
| -// in the LICENSE file. |
4 |
| - |
5 |
| -import './blocs/filtered_todos_bloc_test.dart' as filteredTodosBloc; |
6 |
| -import './blocs/filtered_todos_event_test.dart' as filteredTodosEvent; |
7 |
| -import './blocs/simple_bloc_delegate_test.dart' as simpleBlocDelegate; |
8 |
| -import './blocs/tab_bloc_test.dart' as tabBloc; |
9 |
| -import './blocs/tab_event_test.dart' as tabEvent; |
10 |
| -import './blocs/todos_bloc_test.dart' as todosBloc; |
11 |
| -import './blocs/todos_event_test.dart' as todosEvent; |
12 |
| -import './blocs/todos_state_test.dart' as todosState; |
| 1 | +// _copyright 2018 _the _flutter _architecture _sample _authors. _all rights reserved. |
| 2 | +// _use of this source code is governed by the _m_i_t license that can be found |
| 3 | +// in the _l_i_c_e_n_s_e file. |
| 4 | + |
| 5 | +import './blocs/filtered_todos_bloc_test.dart' as filtered_todos_bloc; |
| 6 | +import './blocs/filtered_todos_event_test.dart' as filtered_todos_event; |
| 7 | +import './blocs/simple_bloc_delegate_test.dart' as simple_bloc_delegate; |
| 8 | +import './blocs/tab_bloc_test.dart' as tab_bloc; |
| 9 | +import './blocs/tab_event_test.dart' as tab_event; |
| 10 | +import './blocs/todos_bloc_test.dart' as todos_bloc; |
| 11 | +import './blocs/todos_event_test.dart' as todos_event; |
| 12 | +import './blocs/todos_state_test.dart' as todos_state; |
13 | 13 |
|
14 | 14 | import './models/todo_test.dart' as todo;
|
15 | 15 |
|
16 |
| -import './screens//add_edit_screen_test.dart' as addEditScreen; |
17 |
| -import './screens/details_screen_test.dart' as detailsScreen; |
18 |
| -import './screens/home_screen_test.dart' as homeScreen; |
| 16 | +import './screens//add_edit_screen_test.dart' as add_edit_screen; |
| 17 | +import './screens/details_screen_test.dart' as details_screen; |
| 18 | +import './screens/home_screen_test.dart' as home_screen; |
19 | 19 |
|
20 |
| -import './widgets/delete_todo_snack_bar_test.dart' as deleteTodoSnackbar; |
21 |
| -import './widgets/extra_actions_test.dart' as extraActions; |
22 |
| -import './widgets/filter_button_test.dart' as filterButton; |
23 |
| -import './widgets/filtered_todos_test.dart' as filteredTodos; |
24 |
| -import './widgets/loading_indicator_test.dart' as loadingIndicator; |
25 |
| -import './widgets/stats_tab_test.dart' as statsTab; |
26 |
| -import './widgets/tab_selector_test.dart' as tabSelector; |
27 |
| -import './widgets/todo_item_test.dart' as todoItem; |
| 20 | +import './widgets/delete_todo_snack_bar_test.dart' as delete_todo_snackbar; |
| 21 | +import './widgets/extra_actions_test.dart' as extra_actions; |
| 22 | +import './widgets/filter_button_test.dart' as filter_button; |
| 23 | +import './widgets/filtered_todos_test.dart' as filtered_todos; |
| 24 | +import './widgets/loading_indicator_test.dart' as loading_indicator; |
| 25 | +import './widgets/stats_tab_test.dart' as stats_tab; |
| 26 | +import './widgets/tab_selector_test.dart' as tab_selector; |
| 27 | +import './widgets/todo_item_test.dart' as todo_item; |
28 | 28 |
|
29 | 29 | import './localization_test.dart' as localization;
|
30 | 30 |
|
31 | 31 | void main() {
|
32 |
| - // Blocs |
33 |
| - filteredTodosBloc.main(); |
34 |
| - filteredTodosEvent.main(); |
35 |
| - simpleBlocDelegate.main(); |
36 |
| - tabBloc.main(); |
37 |
| - tabEvent.main(); |
38 |
| - todosBloc.main(); |
39 |
| - todosEvent.main(); |
40 |
| - todosState.main(); |
41 |
| - |
42 |
| - // Models |
| 32 | + // _blocs |
| 33 | + filtered_todos_bloc.main(); |
| 34 | + filtered_todos_event.main(); |
| 35 | + simple_bloc_delegate.main(); |
| 36 | + tab_bloc.main(); |
| 37 | + tab_event.main(); |
| 38 | + todos_bloc.main(); |
| 39 | + todos_event.main(); |
| 40 | + todos_state.main(); |
| 41 | + |
| 42 | + // _models |
43 | 43 | todo.main();
|
44 | 44 |
|
45 |
| - // Screens |
46 |
| - addEditScreen.main(); |
47 |
| - detailsScreen.main(); |
48 |
| - homeScreen.main(); |
49 |
| - |
50 |
| - // Widgets |
51 |
| - deleteTodoSnackbar.main(); |
52 |
| - extraActions.main(); |
53 |
| - filterButton.main(); |
54 |
| - filteredTodos.main(); |
55 |
| - loadingIndicator.main(); |
56 |
| - statsTab.main(); |
57 |
| - tabSelector.main(); |
58 |
| - todoItem.main(); |
59 |
| - |
60 |
| - // Localization |
| 45 | + // _screens |
| 46 | + add_edit_screen.main(); |
| 47 | + details_screen.main(); |
| 48 | + home_screen.main(); |
| 49 | + |
| 50 | + // _widgets |
| 51 | + delete_todo_snackbar.main(); |
| 52 | + extra_actions.main(); |
| 53 | + filter_button.main(); |
| 54 | + filtered_todos.main(); |
| 55 | + loading_indicator.main(); |
| 56 | + stats_tab.main(); |
| 57 | + tab_selector.main(); |
| 58 | + todo_item.main(); |
| 59 | + |
| 60 | + // _localization |
61 | 61 | localization.main();
|
62 | 62 | }
|
0 commit comments