File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22// Use of this source code is governed by a BSD-style license that can be
33// found in the LICENSE file.
44
5- class Assets {
5+ abstract final class Assets {
66 static const activities = 'assets/activities.json' ;
77 static const destinations = 'assets/destinations.json' ;
88}
Original file line number Diff line number Diff line change 22// Use of this source code is governed by a BSD-style license that can be
33// found in the LICENSE file.
44
5- class Routes {
5+ abstract final class Routes {
66 static const home = '/' ;
77 static const login = '/login' ;
88 static const search = '/$searchRelative ' ;
Original file line number Diff line number Diff line change 44
55import 'package:flutter/material.dart' ;
66
7- class AppColors {
7+ abstract final class AppColors {
88 static const black1 = Color (0xFF101010 );
99 static const white1 = Color (0xFFFFF7FA );
1010 static const grey1 = Color (0xFFF2F2F2 );
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import 'colors.dart';
66import '../ui/tag_chip.dart' ;
77import 'package:flutter/material.dart' ;
88
9- class AppTheme {
9+ abstract final class AppTheme {
1010 static const _textTheme = TextTheme (
1111 headlineLarge: TextStyle (
1212 fontSize: 32 ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import 'dart:io';
88import '../model/activity/activity.dart' ;
99import '../model/destination/destination.dart' ;
1010
11- class Assets {
11+ abstract final class Assets {
1212 static const _activities = '../app/assets/activities.json' ;
1313 static const _destinations = '../app/assets/destinations.json' ;
1414
Original file line number Diff line number Diff line change 44
55import '../model/user/user.dart' ;
66
7- class Constants {
7+ abstract final class Constants {
88 /// Email for the hardcoded login.
99 static const email
= '[email protected] ' ;
1010
You can’t perform that action at this time.
0 commit comments