Prepare breakpoint handling
This commit is contained in:
parent
6804f2c33f
commit
efa2ed6f5b
32 changed files with 885 additions and 404 deletions
|
@ -5,7 +5,7 @@
|
||||||
"title": "AmBiTo Toolkit",
|
"title": "AmBiTo Toolkit",
|
||||||
"links": {
|
"links": {
|
||||||
"massnahmen": {
|
"massnahmen": {
|
||||||
"title": "Maßnahmen"
|
"title": "Maßnahmenkategorien"
|
||||||
},
|
},
|
||||||
"dashboard": {
|
"dashboard": {
|
||||||
"title": "Dashboard"
|
"title": "Dashboard"
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
"start": {
|
"start": {
|
||||||
"links": {
|
"links": {
|
||||||
"massnahmen": {
|
"massnahmen": {
|
||||||
"title": "Maßnahmen"
|
"title": "Maßnahmenkategorien"
|
||||||
},
|
},
|
||||||
"dashboard": {
|
"dashboard": {
|
||||||
"title": "Dashboard"
|
"title": "Dashboard"
|
||||||
|
|
210
lib/main.dart
210
lib/main.dart
|
@ -2,9 +2,12 @@ import 'package:ambito/src/packages/ambito_api/base_api.dart';
|
||||||
import 'package:ambito/src/packages/ambito_db/base_db.dart';
|
import 'package:ambito/src/packages/ambito_db/base_db.dart';
|
||||||
import 'package:ambito/src/packages/ambito_sharedprefs/ambito_sharedprefs.dart';
|
import 'package:ambito/src/packages/ambito_sharedprefs/ambito_sharedprefs.dart';
|
||||||
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
import 'package:ambito/src/pages/actions/action_detail_page.dart';
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme_large.dart';
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme_medium.dart';
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme_small.dart';
|
||||||
import 'package:ambito/src/pages/actions/actions_page.dart';
|
import 'package:ambito/src/pages/actions/actions_page.dart';
|
||||||
import 'package:ambito/src/pages/actions/actions_pre_page.dart';
|
import 'package:ambito/src/pages/actions/actions_pre_page.dart';
|
||||||
|
import 'package:ambito/src/pages/actions/detail/action_detail_page.dart';
|
||||||
import 'package:ambito/src/pages/calendar/calendar_page.dart';
|
import 'package:ambito/src/pages/calendar/calendar_page.dart';
|
||||||
import 'package:ambito/src/pages/calendar/calendar_page_year.dart';
|
import 'package:ambito/src/pages/calendar/calendar_page_year.dart';
|
||||||
import 'package:ambito/src/pages/dashboard/dashboard_page.dart';
|
import 'package:ambito/src/pages/dashboard/dashboard_page.dart';
|
||||||
|
@ -16,6 +19,7 @@ import 'package:flutter_localizations/flutter_localizations.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:isar/isar.dart';
|
import 'package:isar/isar.dart';
|
||||||
import 'package:logger/logger.dart';
|
import 'package:logger/logger.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
import 'package:syncfusion_localizations/syncfusion_localizations.dart';
|
import 'package:syncfusion_localizations/syncfusion_localizations.dart';
|
||||||
|
|
||||||
|
@ -23,9 +27,50 @@ final Logger logger = Logger(
|
||||||
printer: PrettyPrinter(),
|
printer: PrettyPrinter(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const BreakpointConfiguration myBreakpoints = BreakpointConfiguration(
|
||||||
|
xs: Breakpoint(
|
||||||
|
breakpoint: 0,
|
||||||
|
width: double.infinity,
|
||||||
|
margin: 16,
|
||||||
|
padding: 0,
|
||||||
|
columns: 4,
|
||||||
|
),
|
||||||
|
sm: Breakpoint(
|
||||||
|
breakpoint: 320,
|
||||||
|
width: double.infinity,
|
||||||
|
margin: 32,
|
||||||
|
padding: 0,
|
||||||
|
columns: 8,
|
||||||
|
),
|
||||||
|
md: Breakpoint(
|
||||||
|
breakpoint: 905,
|
||||||
|
width: 840,
|
||||||
|
margin: null,
|
||||||
|
padding: 0,
|
||||||
|
columns: 12,
|
||||||
|
),
|
||||||
|
lg: Breakpoint(
|
||||||
|
breakpoint: 1240,
|
||||||
|
width: 1152,
|
||||||
|
margin: 0,
|
||||||
|
padding: 0,
|
||||||
|
columns: 12,
|
||||||
|
),
|
||||||
|
xl: Breakpoint(
|
||||||
|
breakpoint: 1440,
|
||||||
|
width: 1152,
|
||||||
|
margin: null,
|
||||||
|
padding: 0,
|
||||||
|
columns: 12,
|
||||||
|
),
|
||||||
|
xxl: null,
|
||||||
|
);
|
||||||
|
|
||||||
late Isar isar;
|
late Isar isar;
|
||||||
late SharedPreferences prefs;
|
late SharedPreferences prefs;
|
||||||
AmbitoTheme baseTheme = AmbitoTheme();
|
AmbitoTheme largeTheme = AmbitoThemeLarge();
|
||||||
|
AmbitoTheme mediumTheme = AmbitoThemeMedium();
|
||||||
|
AmbitoTheme smallTheme = AmbitoThemeSmall();
|
||||||
|
|
||||||
void main() async {
|
void main() async {
|
||||||
WidgetsFlutterBinding.ensureInitialized();
|
WidgetsFlutterBinding.ensureInitialized();
|
||||||
|
@ -58,91 +103,94 @@ class Ambito extends StatelessWidget {
|
||||||
const Ambito({super.key});
|
const Ambito({super.key});
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return GetMaterialApp(
|
return BreakpointConfigurator(
|
||||||
debugShowCheckedModeBanner: false,
|
configuration: myBreakpoints,
|
||||||
localizationsDelegates: [
|
child: GetMaterialApp(
|
||||||
FlutterI18nDelegate(
|
debugShowCheckedModeBanner: false,
|
||||||
translationLoader: FileTranslationLoader(
|
localizationsDelegates: [
|
||||||
fallbackFile: 'de',
|
FlutterI18nDelegate(
|
||||||
basePath: 'i18n',
|
translationLoader: FileTranslationLoader(
|
||||||
|
fallbackFile: 'de',
|
||||||
|
basePath: 'i18n',
|
||||||
|
),
|
||||||
|
missingTranslationHandler: (key, locale) {
|
||||||
|
if (kDebugMode) {
|
||||||
|
print("--- Missing Key: $key, languageCode: $locale");
|
||||||
|
}
|
||||||
|
},
|
||||||
),
|
),
|
||||||
missingTranslationHandler: (key, locale) {
|
GlobalMaterialLocalizations.delegate,
|
||||||
if (kDebugMode) {
|
GlobalCupertinoLocalizations.delegate,
|
||||||
print("--- Missing Key: $key, languageCode: $locale");
|
GlobalWidgetsLocalizations.delegate,
|
||||||
}
|
SfGlobalLocalizations.delegate,
|
||||||
},
|
],
|
||||||
),
|
title: 'AmBiTo',
|
||||||
GlobalMaterialLocalizations.delegate,
|
supportedLocales: const [Locale('de')],
|
||||||
GlobalCupertinoLocalizations.delegate,
|
locale: const Locale('de'),
|
||||||
GlobalWidgetsLocalizations.delegate,
|
builder: FlutterI18n.rootAppBuilder(),
|
||||||
SfGlobalLocalizations.delegate,
|
theme: (getTheme(context)).lightThemeData,
|
||||||
],
|
darkTheme: (getTheme(context)).darkThemeData,
|
||||||
title: 'AmBiTo',
|
themeMode: ThemeMode.light,
|
||||||
supportedLocales: const [Locale('de')],
|
initialRoute: '/massnahmen',
|
||||||
locale: const Locale('de'),
|
getPages: [
|
||||||
builder: FlutterI18n.rootAppBuilder(),
|
GetPage(
|
||||||
theme: baseTheme.lightThemeData,
|
name: '/',
|
||||||
darkTheme: baseTheme.darkThemeData,
|
page: () => const ActionsPrePage(),
|
||||||
themeMode: ThemeMode.light,
|
|
||||||
initialRoute: '/massnahmen',
|
|
||||||
getPages: [
|
|
||||||
GetPage(
|
|
||||||
name: '/',
|
|
||||||
page: () => const ActionsPrePage(),
|
|
||||||
),
|
|
||||||
GetPage(
|
|
||||||
name: '/kalender',
|
|
||||||
page: () => const CalendarPage(),
|
|
||||||
),
|
|
||||||
GetPage(
|
|
||||||
name: '/kalender/jahr',
|
|
||||||
page: () => const CalendarPageYear(),
|
|
||||||
),
|
|
||||||
GetPage(
|
|
||||||
name: '/massnahmen',
|
|
||||||
page: () => const ActionsPrePage(),
|
|
||||||
),
|
|
||||||
GetPage(
|
|
||||||
name: '/massnahmendatenbank',
|
|
||||||
page: () => const ActionsPage(),
|
|
||||||
),
|
|
||||||
GetPage(
|
|
||||||
name: '/dashboard',
|
|
||||||
page: () => DashboardPage(
|
|
||||||
businessId: prefs.getInt('currentUser') ?? 22,
|
|
||||||
userId: 0,
|
|
||||||
),
|
),
|
||||||
),
|
GetPage(
|
||||||
GetPage(
|
name: '/kalender',
|
||||||
name: '/dashboard/meine-massnahmen',
|
page: () => const CalendarPage(),
|
||||||
page: () => DashboardPage(
|
|
||||||
businessId: prefs.getInt('currentUser') ?? 22,
|
|
||||||
userId: 0,
|
|
||||||
),
|
),
|
||||||
),
|
GetPage(
|
||||||
GetPage(
|
name: '/kalender/jahr',
|
||||||
name: '/dashboard/urkunde',
|
page: () => const CalendarPageYear(),
|
||||||
page: () => DashboardPage(
|
|
||||||
businessId: prefs.getInt('currentUser') ?? 22,
|
|
||||||
userId: 0,
|
|
||||||
),
|
),
|
||||||
),
|
GetPage(
|
||||||
GetPage(
|
name: '/massnahmen',
|
||||||
name: '/dashboard/flaechen',
|
page: () => const ActionsPrePage(),
|
||||||
page: () => DashboardPage(
|
|
||||||
businessId: prefs.getInt('currentUser') ?? 22,
|
|
||||||
userId: 0,
|
|
||||||
),
|
),
|
||||||
),
|
GetPage(
|
||||||
GetPage(
|
name: '/massnahmendatenbank',
|
||||||
name: '/dashboard/stammdaten',
|
page: () => const ActionsPage(),
|
||||||
page: () => DashboardPage(
|
|
||||||
businessId: prefs.getInt('currentUser') ?? 22,
|
|
||||||
userId: 0,
|
|
||||||
),
|
),
|
||||||
),
|
GetPage(
|
||||||
GetPage(name: '/massnahme/:id', page: () => const ActionDetailPage())
|
name: '/dashboard',
|
||||||
],
|
page: () => DashboardPage(
|
||||||
|
businessId: prefs.getInt('currentUser') ?? 22,
|
||||||
|
userId: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
GetPage(
|
||||||
|
name: '/dashboard/meine-massnahmen',
|
||||||
|
page: () => DashboardPage(
|
||||||
|
businessId: prefs.getInt('currentUser') ?? 22,
|
||||||
|
userId: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
GetPage(
|
||||||
|
name: '/dashboard/urkunde',
|
||||||
|
page: () => DashboardPage(
|
||||||
|
businessId: prefs.getInt('currentUser') ?? 22,
|
||||||
|
userId: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
GetPage(
|
||||||
|
name: '/dashboard/flaechen',
|
||||||
|
page: () => DashboardPage(
|
||||||
|
businessId: prefs.getInt('currentUser') ?? 22,
|
||||||
|
userId: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
GetPage(
|
||||||
|
name: '/dashboard/stammdaten',
|
||||||
|
page: () => DashboardPage(
|
||||||
|
businessId: prefs.getInt('currentUser') ?? 22,
|
||||||
|
userId: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
GetPage(name: '/massnahme/:id', page: () => const ActionDetailPage())
|
||||||
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
19
lib/src/packages/ambito_notifier/notifier/theme_manager.dart
Normal file
19
lib/src/packages/ambito_notifier/notifier/theme_manager.dart
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme_medium.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
|
||||||
|
class ThemeManager with ChangeNotifier {
|
||||||
|
AmbitoTheme? _themeData;
|
||||||
|
|
||||||
|
/// Use this method on UI to get selected theme.
|
||||||
|
AmbitoTheme? get themeData {
|
||||||
|
_themeData ??= AmbitoThemeMedium();
|
||||||
|
return _themeData;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Sets theme and notifies listeners about change.
|
||||||
|
setTheme(AmbitoTheme theme) async {
|
||||||
|
_themeData = theme;
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,8 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
|
import '../../../main.dart';
|
||||||
|
|
||||||
final orangeColors = {
|
final orangeColors = {
|
||||||
'primary': const Color(0xffeebb4b),
|
'primary': const Color(0xffeebb4b),
|
||||||
|
@ -45,7 +48,18 @@ final actionAreaFGColors = {
|
||||||
'Betriebsstätte': const Color(0xff999999),
|
'Betriebsstätte': const Color(0xff999999),
|
||||||
};
|
};
|
||||||
|
|
||||||
class AmbitoTheme {
|
AmbitoTheme getTheme(BuildContext context) {
|
||||||
|
var breakpoint = context.breakpoint;
|
||||||
|
if (breakpoint >= myBreakpoints.lg) {
|
||||||
|
return largeTheme;
|
||||||
|
}
|
||||||
|
if (breakpoint >= myBreakpoints.sm) {
|
||||||
|
return mediumTheme;
|
||||||
|
}
|
||||||
|
return smallTheme;
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract class AmbitoTheme {
|
||||||
static ThemeMode appThemeMode = ThemeMode.light;
|
static ThemeMode appThemeMode = ThemeMode.light;
|
||||||
|
|
||||||
ColorScheme get lightColorScheme => const ColorScheme(
|
ColorScheme get lightColorScheme => const ColorScheme(
|
||||||
|
|
97
lib/src/packages/ambito_theme/ambito_theme_large.dart
Normal file
97
lib/src/packages/ambito_theme/ambito_theme_large.dart
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
|
||||||
|
class AmbitoThemeLarge extends AmbitoTheme {
|
||||||
|
TextTheme get textTheme => TextTheme(
|
||||||
|
displayLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 57,
|
||||||
|
height: 1.12,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: -.25),
|
||||||
|
displayMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 45,
|
||||||
|
height: 1.15,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
displaySmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 36,
|
||||||
|
height: 1.22,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 48,
|
||||||
|
height: 1.25,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 28,
|
||||||
|
height: 1.29,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 24,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
titleLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 40,
|
||||||
|
height: 1.27,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
titleMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.5,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.15,
|
||||||
|
),
|
||||||
|
titleSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 14,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
labelLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 32,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
labelMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 24,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.15,
|
||||||
|
),
|
||||||
|
labelSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.45,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
bodyLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.5,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.5,
|
||||||
|
),
|
||||||
|
bodyMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 14,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.25,
|
||||||
|
),
|
||||||
|
bodySmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 12,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.4,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
97
lib/src/packages/ambito_theme/ambito_theme_medium.dart
Normal file
97
lib/src/packages/ambito_theme/ambito_theme_medium.dart
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
|
||||||
|
class AmbitoThemeMedium extends AmbitoTheme {
|
||||||
|
TextTheme get textTheme => TextTheme(
|
||||||
|
displayLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 57,
|
||||||
|
height: 1.12,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: -.25),
|
||||||
|
displayMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 45,
|
||||||
|
height: 1.15,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
displaySmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 36,
|
||||||
|
height: 1.22,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 44,
|
||||||
|
height: 1.25,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 28,
|
||||||
|
height: 1.29,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 24,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
titleLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 40,
|
||||||
|
height: 1.27,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
titleMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.5,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.15,
|
||||||
|
),
|
||||||
|
titleSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 14,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
labelLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 32,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
labelMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 24,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.15,
|
||||||
|
),
|
||||||
|
labelSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.45,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
bodyLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.5,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.5,
|
||||||
|
),
|
||||||
|
bodyMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 14,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.25,
|
||||||
|
),
|
||||||
|
bodySmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 12,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.4,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
97
lib/src/packages/ambito_theme/ambito_theme_small.dart
Normal file
97
lib/src/packages/ambito_theme/ambito_theme_small.dart
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
|
||||||
|
class AmbitoThemeSmall extends AmbitoTheme {
|
||||||
|
TextTheme get textTheme => TextTheme(
|
||||||
|
displayLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 57,
|
||||||
|
height: 1.12,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: -.25),
|
||||||
|
displayMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 45,
|
||||||
|
height: 1.15,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
displaySmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 36,
|
||||||
|
height: 1.22,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 32,
|
||||||
|
height: 1.25,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 28,
|
||||||
|
height: 1.29,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
headlineSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 24,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
titleLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 40,
|
||||||
|
height: 1.27,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0,
|
||||||
|
),
|
||||||
|
titleMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.5,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.15,
|
||||||
|
),
|
||||||
|
titleSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 14,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
labelLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 32,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
labelMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 24,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.15,
|
||||||
|
),
|
||||||
|
labelSmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.45,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
letterSpacing: 0.1,
|
||||||
|
),
|
||||||
|
bodyLarge: GoogleFonts.openSans(
|
||||||
|
fontSize: 16,
|
||||||
|
height: 1.5,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.5,
|
||||||
|
),
|
||||||
|
bodyMedium: GoogleFonts.openSans(
|
||||||
|
fontSize: 14,
|
||||||
|
height: 1.42,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.25,
|
||||||
|
),
|
||||||
|
bodySmall: GoogleFonts.openSans(
|
||||||
|
fontSize: 12,
|
||||||
|
height: 1.33,
|
||||||
|
fontWeight: FontWeight.w400,
|
||||||
|
letterSpacing: 0.4,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
|
@ -11,6 +11,7 @@ import 'package:flutter_breadcrumb/flutter_breadcrumb.dart';
|
||||||
import 'package:flutter_i18n/flutter_i18n.dart';
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:highlight_text/highlight_text.dart';
|
import 'package:highlight_text/highlight_text.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
import '../../../main.dart';
|
import '../../../main.dart';
|
||||||
import '../../entity/entities.dart';
|
import '../../entity/entities.dart';
|
||||||
|
@ -40,7 +41,8 @@ class ActionsPageState extends State<ActionsPage> {
|
||||||
List<String>? selectedMonths;
|
List<String>? selectedMonths;
|
||||||
List massnahmen = [];
|
List massnahmen = [];
|
||||||
Map<String, HighlightedWord> words = {};
|
Map<String, HighlightedWord> words = {};
|
||||||
String? preselect;
|
String? preselectAreaType;
|
||||||
|
String? preselectMeasureType;
|
||||||
|
|
||||||
final TextEditingController _searchController = TextEditingController();
|
final TextEditingController _searchController = TextEditingController();
|
||||||
final FocusNode _searchFocusNode = FocusNode();
|
final FocusNode _searchFocusNode = FocusNode();
|
||||||
|
@ -50,10 +52,10 @@ class ActionsPageState extends State<ActionsPage> {
|
||||||
ambitoFilterNotifier.addListener(_changeListener);
|
ambitoFilterNotifier.addListener(_changeListener);
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
preselect = prefs.getString('selected_areaType');
|
preselectAreaType = prefs.getString('selected_areaType');
|
||||||
if (preselect != null && preselect!.isNotEmpty) {
|
if (preselectAreaType != null && preselectAreaType!.isNotEmpty) {
|
||||||
filterAreaType = preselect;
|
filterAreaType = preselectAreaType;
|
||||||
ambitoFilterNotifier.setFilter('areaType', preselect!);
|
ambitoFilterNotifier.setFilter('areaType', preselectAreaType!);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
_initializeData();
|
_initializeData();
|
||||||
|
@ -203,6 +205,7 @@ class ActionsPageState extends State<ActionsPage> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 32),
|
padding: const EdgeInsets.symmetric(horizontal: 32),
|
||||||
|
@ -303,10 +306,8 @@ class ActionsPageState extends State<ActionsPage> {
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget getCard(BuildContext context, Measure massnahme) {
|
Widget getCard(BuildContext context, Measure massnahme) {
|
||||||
final background =
|
|
||||||
actionGroupColors[massnahme.actionGroup?.value] ?? Colors.white;
|
|
||||||
final image = massnahme.getThumbnail();
|
final image = massnahme.getThumbnail();
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
return Visibility(
|
return Visibility(
|
||||||
visible: visible[massnahme.id] ?? false,
|
visible: visible[massnahme.id] ?? false,
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
|
@ -314,37 +315,57 @@ class ActionsPageState extends State<ActionsPage> {
|
||||||
onTap: () async {
|
onTap: () async {
|
||||||
Get.toNamed('/massnahme/${massnahme.id}');
|
Get.toNamed('/massnahme/${massnahme.id}');
|
||||||
},
|
},
|
||||||
child: SizedBox(
|
highlightColor: Colors.transparent,
|
||||||
width: 800,
|
splashColor: Colors.transparent,
|
||||||
child: Card(
|
focusColor: Colors.transparent,
|
||||||
elevation: 2,
|
hoverColor: Colors.transparent,
|
||||||
color: Colors.white,
|
child: Padding(
|
||||||
child: Container(
|
padding: const EdgeInsets.only(bottom: 40),
|
||||||
decoration: BoxDecoration(
|
child: SizedBox(
|
||||||
border: Border(left: BorderSide(color: background, width: 15)),
|
width: 800,
|
||||||
),
|
child: Card(
|
||||||
padding: const EdgeInsets.all(32),
|
elevation: 0,
|
||||||
|
color: theme.currentColorScheme.outline.withOpacity(.1),
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
image ?? const SizedBox(width: 300, height: 140),
|
ClipRRect(
|
||||||
const SizedBox(width: 16),
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
|
child: (image != null)
|
||||||
|
? image
|
||||||
|
: Container(
|
||||||
|
width: 300,
|
||||||
|
height: 150,
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: theme.currentColorScheme.primary
|
||||||
|
.withOpacity(.1),
|
||||||
|
image: const DecorationImage(
|
||||||
|
image:
|
||||||
|
AssetImage('assets/images/logo_trans.png'),
|
||||||
|
fit: BoxFit.fitHeight,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Column(
|
child: Padding(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
padding: EdgeInsets.all(10),
|
||||||
children: [
|
child: Column(
|
||||||
TextHighlight(
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
text: massnahme.name!,
|
children: [
|
||||||
words: words,
|
TextHighlight(
|
||||||
textStyle: Theme.of(context).textTheme.headlineSmall,
|
text: massnahme.name!,
|
||||||
),
|
words: words,
|
||||||
const SizedBox(height: 8),
|
textStyle: theme.textTheme.headlineSmall,
|
||||||
TextHighlight(
|
),
|
||||||
text: massnahme.factsheetDefinition ?? '',
|
const SizedBox(height: 8),
|
||||||
words: words,
|
TextHighlight(
|
||||||
textStyle: Theme.of(context).textTheme.bodyMedium,
|
text: massnahme.factsheetDefinition ?? '',
|
||||||
),
|
words: words,
|
||||||
],
|
textStyle: theme.textTheme.bodyLarge,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
@ -4,6 +4,7 @@ import 'package:ambito/src/entity/measure/measure_repository.dart';
|
||||||
import 'package:ambito/src/pages/ambito_page.dart';
|
import 'package:ambito/src/pages/ambito_page.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
import '../../../main.dart';
|
import '../../../main.dart';
|
||||||
import '../../packages/ambito_theme/ambito_theme.dart';
|
import '../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
@ -46,10 +47,10 @@ class ActionsPrePageState extends State<ActionsPrePage> {
|
||||||
onHover: (value) {},
|
onHover: (value) {},
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
width: 262,
|
width: 262,
|
||||||
height: 350,
|
height: 380,
|
||||||
child: Card(
|
child: Card(
|
||||||
elevation: 4,
|
elevation: 0,
|
||||||
surfaceTintColor: actionAreaColors[filter.name!],
|
color: actionAreaColors[filter.name!],
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
ClipRRect(
|
ClipRRect(
|
||||||
|
@ -58,26 +59,27 @@ class ActionsPrePageState extends State<ActionsPrePage> {
|
||||||
filter.image!,
|
filter.image!,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(left: 16, right: 16),
|
padding: const EdgeInsets.only(left: 16, right: 16),
|
||||||
child: Text(
|
child: Text(
|
||||||
filter.name!,
|
filter.name!,
|
||||||
style: baseTheme.currentThemeData.textTheme.titleLarge
|
style: largeTheme
|
||||||
|
.currentThemeData.textTheme.headlineMedium
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: actionAreaFGColors[filter.name!],
|
color: actionAreaFGColors[filter.name!],
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(left: 16, right: 16),
|
padding: const EdgeInsets.only(left: 16, right: 16),
|
||||||
child: Text(
|
child: Text(
|
||||||
filter.description!,
|
filter.description!,
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium
|
style: largeTheme.currentThemeData.textTheme.bodyMedium
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
color: largeTheme.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -87,7 +89,7 @@ class ActionsPrePageState extends State<ActionsPrePage> {
|
||||||
left: 16, right: 16, bottom: 16),
|
left: 16, right: 16, bottom: 16),
|
||||||
child: Text(
|
child: Text(
|
||||||
'Anzahl: ${filter.ids!.length}',
|
'Anzahl: ${filter.ids!.length}',
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium
|
style: largeTheme.currentThemeData.textTheme.titleMedium
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: actionAreaFGColors[filter.name!],
|
color: actionAreaFGColors[filter.name!],
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
|
@ -108,53 +110,74 @@ class ActionsPrePageState extends State<ActionsPrePage> {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: SingleChildScrollView(
|
body: BreakpointBuilder(builder: (
|
||||||
child: Center(
|
context,
|
||||||
child: SizedBox(
|
breakpoint,
|
||||||
width: 1152,
|
configuration,
|
||||||
child: Column(
|
) {
|
||||||
mainAxisSize: MainAxisSize.max,
|
return SingleChildScrollView(
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
child: Center(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
child: SizedBox(
|
||||||
children: [
|
width: Breakpoint.fromContext(context).width,
|
||||||
baseTheme.verticalSpacerMax,
|
child: Column(
|
||||||
Text(
|
mainAxisSize: MainAxisSize.max,
|
||||||
'Maßnahmenkategorien',
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
textAlign: TextAlign.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
style: baseTheme.currentThemeData.textTheme.headlineLarge
|
children: [
|
||||||
?.copyWith(
|
Text(breakpoint.toString()),
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
theme.verticalSpacerMax,
|
||||||
|
Text(
|
||||||
|
'Maßnahmenkategorien',
|
||||||
|
textAlign: TextAlign.start,
|
||||||
|
style: theme.currentThemeData.textTheme.headlineLarge
|
||||||
|
?.copyWith(
|
||||||
|
color: theme.currentColorScheme.onSurface,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
theme.verticalSpacerMax,
|
||||||
baseTheme.verticalSpacerMax,
|
Wrap(
|
||||||
Wrap(
|
alignment: WrapAlignment.center,
|
||||||
alignment: WrapAlignment.center,
|
spacing: 32,
|
||||||
spacing: 32,
|
children: cards,
|
||||||
children: cards,
|
),
|
||||||
),
|
theme.verticalSpacerMax,
|
||||||
baseTheme.verticalSpacerMax,
|
TextButton(
|
||||||
TextButton(
|
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
await prefs.setString('selected_areaType', '');
|
await prefs.setString('selected_areaType', '');
|
||||||
await Get.toNamed('/massnahmendatenbank');
|
await Get.toNamed('/massnahmendatenbank');
|
||||||
},
|
},
|
||||||
child: Text(
|
child: Container(
|
||||||
'Zeig mir alle $counterComplete Maßnahmen...',
|
decoration: BoxDecoration(
|
||||||
style: const TextStyle(
|
borderRadius: BorderRadius.all(Radius.circular(8)),
|
||||||
fontSize: 24,
|
color:
|
||||||
fontWeight: FontWeight.bold,
|
theme.currentColorScheme.onSurface.withOpacity(.1),
|
||||||
color: Colors.blueAccent,
|
|
||||||
),
|
),
|
||||||
))
|
width: Breakpoint.fromContext(context).width,
|
||||||
],
|
child: Padding(
|
||||||
|
padding: EdgeInsets.all(20),
|
||||||
|
child: Text(
|
||||||
|
'Alle Maßnahmen anzeigen',
|
||||||
|
style: theme.headlineMedium.copyWith(
|
||||||
|
color: theme.currentColorScheme.outline,
|
||||||
|
),
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
);
|
||||||
),
|
}),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,63 +0,0 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
||||||
import '../../../../main.dart';
|
|
||||||
import '../../../entity/entities.dart';
|
|
||||||
|
|
||||||
class FactsheetCard extends StatelessWidget {
|
|
||||||
const FactsheetCard({super.key, required this.massnahme});
|
|
||||||
|
|
||||||
final Measure massnahme;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return SizedBox(
|
|
||||||
width: double.infinity,
|
|
||||||
child: Card(
|
|
||||||
shape: RoundedRectangleBorder(
|
|
||||||
borderRadius: BorderRadius.circular(0),
|
|
||||||
),
|
|
||||||
elevation: 0,
|
|
||||||
color: baseTheme.currentColorScheme.tertiary,
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.all(16),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Text(
|
|
||||||
context.translate('page.actionDetailPage.factsheet.title'),
|
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
|
||||||
),
|
|
||||||
baseTheme.verticalSpacer,
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
_getSortedMaterials(BuildContext context) {
|
|
||||||
List<String> items = [];
|
|
||||||
if (massnahme.materialAction != null) {
|
|
||||||
for (IdValueColor ivc in massnahme.materialAction!) {
|
|
||||||
items.add(ivc.value!);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
items.sort((a, b) => a.toString().compareTo(b.toString()));
|
|
||||||
List<ListTile> tiles = [];
|
|
||||||
for (String item in items) {
|
|
||||||
tiles.add(
|
|
||||||
ListTile(
|
|
||||||
leading: Icon(Icons.fiber_manual_record),
|
|
||||||
title: Text(
|
|
||||||
item,
|
|
||||||
style: Theme.of(context).textTheme.bodyMedium,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return Column(
|
|
||||||
children: tiles,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,23 +1,14 @@
|
||||||
import 'package:ambito/src/entity/entities.dart';
|
import 'package:ambito/src/entity/entities.dart';
|
||||||
import 'package:ambito/src/entity/measure/measure_repository.dart';
|
import 'package:ambito/src/entity/measure/measure_repository.dart';
|
||||||
import 'package:ambito/src/pages/actions/cards/background_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/biodiverisity_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/creation_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/description_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/factsheet_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/funding_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/maintenance_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/presets_card.dart';
|
|
||||||
import 'package:ambito/src/pages/actions/cards/review_card.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_breadcrumb/flutter_breadcrumb.dart';
|
import 'package:flutter_breadcrumb/flutter_breadcrumb.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
import '../../../main.dart';
|
import '../../../../main.dart';
|
||||||
import '../../widgets/appbar/ambito_appbar.dart';
|
import '../../../widgets/appbar/ambito_appbar.dart';
|
||||||
import '../ambito_page.dart';
|
import '../../ambito_page.dart';
|
||||||
import 'cards/advisor_card.dart';
|
import 'cards/_cards.dart';
|
||||||
import 'cards/material_card.dart';
|
|
||||||
|
|
||||||
class ActionDetailPage extends AmbitoPage {
|
class ActionDetailPage extends AmbitoPage {
|
||||||
const ActionDetailPage({super.key});
|
const ActionDetailPage({super.key});
|
||||||
|
@ -51,46 +42,46 @@ class ActionDetailPageState extends State<ActionDetailPage> {
|
||||||
DescriptionCard(
|
DescriptionCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
BackgroundCard(
|
BackgroundCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
PresetsCard(
|
PresetsCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
BiodiverisityCard(
|
BiodiverisityCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
CreationCard(
|
CreationCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
MaintenanceCard(
|
MaintenanceCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
FundingCard(
|
FundingCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
];
|
];
|
||||||
|
|
||||||
sidebarItems = [
|
sidebarItems = [
|
||||||
AdvisorCard(
|
AdvisorCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
MaterialCard(
|
MaterialCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
FactsheetCard(
|
FactsheetCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
ReviewCard(
|
ReviewCard(
|
||||||
massnahme: massnahme!,
|
massnahme: massnahme!,
|
||||||
),
|
),
|
||||||
|
@ -109,6 +100,7 @@ class ActionDetailPageState extends State<ActionDetailPage> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: content,
|
body: content,
|
||||||
);
|
);
|
||||||
|
@ -149,19 +141,19 @@ class ActionDetailPageState extends State<ActionDetailPage> {
|
||||||
Container(
|
Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
height: 400,
|
height: 400,
|
||||||
color: baseTheme.currentColorScheme.primary,
|
color: largeTheme.currentColorScheme.primary,
|
||||||
child: massnahme.getImage(),
|
child: massnahme.getImage(),
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: SingleChildScrollView(
|
child: SingleChildScrollView(
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
Align(
|
Align(
|
||||||
alignment: Alignment.centerLeft,
|
alignment: Alignment.centerLeft,
|
||||||
child: Text(
|
child: Text(
|
||||||
massnahme.name!,
|
massnahme.name!,
|
||||||
style: baseTheme.currentThemeData.textTheme.titleLarge,
|
style: largeTheme.currentThemeData.textTheme.titleLarge,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Row(
|
Row(
|
||||||
|
@ -177,7 +169,7 @@ class ActionDetailPageState extends State<ActionDetailPage> {
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.horizontalSpacer,
|
largeTheme.horizontalSpacer,
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 300,
|
width: 300,
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -186,15 +178,15 @@ class ActionDetailPageState extends State<ActionDetailPage> {
|
||||||
AdvisorCard(
|
AdvisorCard(
|
||||||
massnahme: massnahme,
|
massnahme: massnahme,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
MaterialCard(
|
MaterialCard(
|
||||||
massnahme: massnahme,
|
massnahme: massnahme,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
FactsheetCard(
|
FactsheetCard(
|
||||||
massnahme: massnahme,
|
massnahme: massnahme,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
ReviewCard(
|
ReviewCard(
|
||||||
massnahme: massnahme,
|
massnahme: massnahme,
|
||||||
),
|
),
|
11
lib/src/pages/actions/detail/cards/_cards.dart
Normal file
11
lib/src/pages/actions/detail/cards/_cards.dart
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
export 'advisor_card.dart';
|
||||||
|
export 'background_card.dart';
|
||||||
|
export 'biodiverisity_card.dart';
|
||||||
|
export 'creation_card.dart';
|
||||||
|
export 'description_card.dart';
|
||||||
|
export 'factsheet_card.dart';
|
||||||
|
export 'funding_card.dart';
|
||||||
|
export 'maintenance_card.dart';
|
||||||
|
export 'material_card.dart';
|
||||||
|
export 'presets_card.dart';
|
||||||
|
export 'review_card.dart';
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class AdvisorCard extends StatelessWidget {
|
class AdvisorCard extends StatelessWidget {
|
||||||
const AdvisorCard({super.key, required this.massnahme});
|
const AdvisorCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class AdvisorCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class AdvisorCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.tertiary,
|
color: theme.currentColorScheme.tertiary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,12 +28,12 @@ class AdvisorCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.advisor.title'),
|
context.translate('page.actionDetailPage.advisor.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
'Max Mustermann',
|
'Max Mustermann',
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class BackgroundCard extends StatelessWidget {
|
class BackgroundCard extends StatelessWidget {
|
||||||
const BackgroundCard({super.key, required this.massnahme});
|
const BackgroundCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class BackgroundCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class BackgroundCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,27 +28,27 @@ class BackgroundCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.background.title'),
|
context.translate('page.actionDetailPage.background.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.background.areaType'),
|
context.translate('page.actionDetailPage.background.areaType'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleSmall,
|
style: theme.currentThemeData.textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
theme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
massnahme.factsheetLocation.toString(),
|
massnahme.factsheetLocation.toString(),
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.background.target'),
|
context.translate('page.actionDetailPage.background.target'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleSmall,
|
style: theme.currentThemeData.textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
theme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
massnahme.factsheetTarget.toString(),
|
massnahme.factsheetTarget.toString(),
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class BiodiverisityCard extends StatelessWidget {
|
class BiodiverisityCard extends StatelessWidget {
|
||||||
const BiodiverisityCard({super.key, required this.massnahme});
|
const BiodiverisityCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class BiodiverisityCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class BiodiverisityCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,12 +28,12 @@ class BiodiverisityCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.biodiversity.title'),
|
context.translate('page.actionDetailPage.biodiversity.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
massnahme.oekologischeRelevanzBackground.toString(),
|
massnahme.oekologischeRelevanzBackground.toString(),
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class CreationCard extends StatelessWidget {
|
class CreationCard extends StatelessWidget {
|
||||||
const CreationCard({super.key, required this.massnahme});
|
const CreationCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class CreationCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class CreationCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,21 +28,21 @@ class CreationCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.creation.title'),
|
context.translate('page.actionDetailPage.creation.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.creation.timeFrame'),
|
context.translate('page.actionDetailPage.creation.timeFrame'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleSmall,
|
style: theme.currentThemeData.textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
massnahme.timeFrame
|
massnahme.timeFrame
|
||||||
?.map((item) => item.value)
|
?.map((item) => item.value)
|
||||||
.toList()
|
.toList()
|
||||||
.join(', ') ??
|
.join(', ') ??
|
||||||
'',
|
'',
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class DescriptionCard extends StatelessWidget {
|
class DescriptionCard extends StatelessWidget {
|
||||||
const DescriptionCard({super.key, required this.massnahme});
|
const DescriptionCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class DescriptionCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class DescriptionCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,12 +28,12 @@ class DescriptionCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.description.title'),
|
context.translate('page.actionDetailPage.description.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
massnahme.factsheetDefinition ?? '',
|
massnahme.factsheetDefinition ?? '',
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
40
lib/src/pages/actions/detail/cards/factsheet_card.dart
Normal file
40
lib/src/pages/actions/detail/cards/factsheet_card.dart
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
import '../../../../entity/entities.dart';
|
||||||
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
|
class FactsheetCard extends StatelessWidget {
|
||||||
|
const FactsheetCard({super.key, required this.massnahme});
|
||||||
|
|
||||||
|
final Measure massnahme;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
|
return SizedBox(
|
||||||
|
width: double.infinity,
|
||||||
|
child: Card(
|
||||||
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.circular(0),
|
||||||
|
),
|
||||||
|
elevation: 0,
|
||||||
|
color: theme.currentColorScheme.tertiary,
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
context.translate('page.actionDetailPage.factsheet.title'),
|
||||||
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
|
),
|
||||||
|
theme.verticalSpacer,
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class FundingCard extends StatelessWidget {
|
class FundingCard extends StatelessWidget {
|
||||||
const FundingCard({super.key, required this.massnahme});
|
const FundingCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class FundingCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class FundingCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,9 +28,9 @@ class FundingCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.funding.title'),
|
context.translate('page.actionDetailPage.funding.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class MaintenanceCard extends StatelessWidget {
|
class MaintenanceCard extends StatelessWidget {
|
||||||
const MaintenanceCard({super.key, required this.massnahme});
|
const MaintenanceCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class MaintenanceCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class MaintenanceCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,9 +28,9 @@ class MaintenanceCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.maintenance.title'),
|
context.translate('page.actionDetailPage.maintenance.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class MaterialCard extends StatelessWidget {
|
class MaterialCard extends StatelessWidget {
|
||||||
const MaterialCard({super.key, required this.massnahme});
|
const MaterialCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class MaterialCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class MaterialCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.tertiary,
|
color: theme.currentColorScheme.tertiary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,17 +28,17 @@ class MaterialCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.material.title'),
|
context.translate('page.actionDetailPage.material.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
_getSortedMaterials(context),
|
_getSortedMaterials(context),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
if (massnahme.costsMaterial != null)
|
if (massnahme.costsMaterial != null)
|
||||||
Text(context.translate(
|
Text(context.translate(
|
||||||
'page.actionDetailPage.material.suggested_price') +
|
'page.actionDetailPage.material.suggested_price') +
|
||||||
massnahme.costsMaterial +
|
massnahme.costsMaterial +
|
||||||
' €'),
|
' €'),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -45,6 +47,8 @@ class MaterialCard extends StatelessWidget {
|
||||||
}
|
}
|
||||||
|
|
||||||
_getSortedMaterials(BuildContext context) {
|
_getSortedMaterials(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
List<String> items = [];
|
List<String> items = [];
|
||||||
if (massnahme.materialAction != null) {
|
if (massnahme.materialAction != null) {
|
||||||
for (IdValueColor ivc in massnahme.materialAction!) {
|
for (IdValueColor ivc in massnahme.materialAction!) {
|
||||||
|
@ -56,10 +60,10 @@ class MaterialCard extends StatelessWidget {
|
||||||
for (String item in items) {
|
for (String item in items) {
|
||||||
tiles.add(
|
tiles.add(
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: Icon(Icons.fiber_manual_record),
|
leading: const Icon(Icons.fiber_manual_record),
|
||||||
title: Text(
|
title: Text(
|
||||||
item,
|
item,
|
||||||
style: Theme.of(context).textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
|
@ -1,8 +1,8 @@
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class PresetsCard extends StatelessWidget {
|
class PresetsCard extends StatelessWidget {
|
||||||
const PresetsCard({super.key, required this.massnahme});
|
const PresetsCard({super.key, required this.massnahme});
|
||||||
|
@ -11,6 +11,8 @@ class PresetsCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -18,7 +20,7 @@ class PresetsCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.secondary,
|
color: theme.currentColorScheme.secondary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -26,22 +28,22 @@ class PresetsCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.presets.title'),
|
context.translate('page.actionDetailPage.presets.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
massnahme.remarkablePresets.toString(),
|
massnahme.remarkablePresets.toString(),
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.presets.tips'),
|
context.translate('page.actionDetailPage.presets.tips'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleSmall,
|
style: theme.currentThemeData.textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
theme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
massnahme.tipsPresets.toString(),
|
massnahme.tipsPresets.toString(),
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyMedium,
|
style: theme.currentThemeData.textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
|
@ -2,8 +2,8 @@ import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_rating_stars/flutter_rating_stars.dart';
|
import 'package:flutter_rating_stars/flutter_rating_stars.dart';
|
||||||
|
|
||||||
import '../../../../main.dart';
|
import '../../../../entity/entities.dart';
|
||||||
import '../../../entity/entities.dart';
|
import '../../../../packages/ambito_theme/ambito_theme.dart';
|
||||||
|
|
||||||
class ReviewCard extends StatelessWidget {
|
class ReviewCard extends StatelessWidget {
|
||||||
const ReviewCard({super.key, required this.massnahme});
|
const ReviewCard({super.key, required this.massnahme});
|
||||||
|
@ -12,6 +12,8 @@ class ReviewCard extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final AmbitoTheme theme = getTheme(context);
|
||||||
|
|
||||||
return SizedBox(
|
return SizedBox(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -19,7 +21,7 @@ class ReviewCard extends StatelessWidget {
|
||||||
borderRadius: BorderRadius.circular(0),
|
borderRadius: BorderRadius.circular(0),
|
||||||
),
|
),
|
||||||
elevation: 0,
|
elevation: 0,
|
||||||
color: baseTheme.currentColorScheme.tertiary,
|
color: theme.currentColorScheme.tertiary,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -27,9 +29,9 @@ class ReviewCard extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
context.translate('page.actionDetailPage.review.title'),
|
context.translate('page.actionDetailPage.review.title'),
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium,
|
style: theme.currentThemeData.textTheme.titleMedium,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
theme.verticalSpacer,
|
||||||
RatingStars(
|
RatingStars(
|
||||||
value: 4.5,
|
value: 4.5,
|
||||||
onValueChanged: (v) {},
|
onValueChanged: (v) {},
|
|
@ -6,6 +6,7 @@ import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
import 'package:syncfusion_flutter_calendar/calendar.dart';
|
import 'package:syncfusion_flutter_calendar/calendar.dart';
|
||||||
|
|
||||||
import '../../consts/consts.dart';
|
import '../../consts/consts.dart';
|
||||||
|
@ -64,6 +65,7 @@ class CalendarPageState extends State<CalendarPage> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: Center(
|
body: Center(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
|
|
|
@ -2,6 +2,7 @@ import 'package:ambito/main.dart';
|
||||||
import 'package:ambito/src/entity/_general/filter/item_filter.dart';
|
import 'package:ambito/src/entity/_general/filter/item_filter.dart';
|
||||||
import 'package:ambito/src/entity/measure/measure_repository.dart';
|
import 'package:ambito/src/entity/measure/measure_repository.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
import '../../consts/consts.dart';
|
import '../../consts/consts.dart';
|
||||||
import '../../widgets/appbar/ambito_appbar.dart';
|
import '../../widgets/appbar/ambito_appbar.dart';
|
||||||
|
@ -35,7 +36,7 @@ class CalendarPageYearState extends State<CalendarPageYear> {
|
||||||
padding: const EdgeInsets.all(8),
|
padding: const EdgeInsets.all(8),
|
||||||
child: Text(
|
child: Text(
|
||||||
'Maßnahme',
|
'Maßnahme',
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium
|
style: largeTheme.currentThemeData.textTheme.titleMedium
|
||||||
?.copyWith(fontWeight: FontWeight.bold, color: Colors.white),
|
?.copyWith(fontWeight: FontWeight.bold, color: Colors.white),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -48,7 +49,7 @@ class CalendarPageYearState extends State<CalendarPageYear> {
|
||||||
child: Text(
|
child: Text(
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
month,
|
month,
|
||||||
style: baseTheme.currentThemeData.textTheme.titleMedium
|
style: largeTheme.currentThemeData.textTheme.titleMedium
|
||||||
?.copyWith(fontWeight: FontWeight.bold, color: Colors.white),
|
?.copyWith(fontWeight: FontWeight.bold, color: Colors.white),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -79,7 +80,7 @@ class CalendarPageYearState extends State<CalendarPageYear> {
|
||||||
child: Container(
|
child: Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
height: 44,
|
height: 44,
|
||||||
color: baseTheme.currentColorScheme.primary,
|
color: largeTheme.currentColorScheme.primary,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -110,6 +111,7 @@ class CalendarPageYearState extends State<CalendarPageYear> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: Card(
|
body: Card(
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
|
@ -6,6 +6,7 @@ import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
import 'package:syncfusion_flutter_calendar/calendar.dart';
|
import 'package:syncfusion_flutter_calendar/calendar.dart';
|
||||||
|
|
||||||
import '../../consts/consts.dart';
|
import '../../consts/consts.dart';
|
||||||
|
@ -64,6 +65,7 @@ class CalendarPageState extends State<CalendarPage> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: Center(
|
body: Center(
|
||||||
child: Padding(
|
child: Padding(
|
||||||
|
|
|
@ -2,6 +2,7 @@ import 'package:ambito/src/packages/ambito_theme/ambito_theme.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
import 'package:percent_indicator/linear_percent_indicator.dart';
|
import 'package:percent_indicator/linear_percent_indicator.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
import '../../../main.dart';
|
import '../../../main.dart';
|
||||||
import '../../widgets/appbar/ambito_appbar.dart';
|
import '../../widgets/appbar/ambito_appbar.dart';
|
||||||
|
@ -62,6 +63,7 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(
|
appBar: AmbitoAppbar(
|
||||||
links: const ['dashboard', 'massnahmen'],
|
links: const ['dashboard', 'massnahmen'],
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
),
|
),
|
||||||
body: SingleChildScrollView(
|
body: SingleChildScrollView(
|
||||||
child: Align(
|
child: Align(
|
||||||
|
@ -73,22 +75,22 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
baseTheme.verticalSpacerMax,
|
largeTheme.verticalSpacerMax,
|
||||||
Text(
|
Text(
|
||||||
'Willkommen, Max Mustermann!',
|
'Willkommen, Max Mustermann!',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme.currentThemeData.textTheme.headlineLarge
|
style: largeTheme.currentThemeData.textTheme.headlineLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
color: largeTheme.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerMax,
|
largeTheme.verticalSpacerMax,
|
||||||
Wrap(
|
Wrap(
|
||||||
alignment: WrapAlignment.center,
|
alignment: WrapAlignment.center,
|
||||||
spacing: 32,
|
spacing: 32,
|
||||||
children: cards,
|
children: cards,
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerMax,
|
largeTheme.verticalSpacerMax,
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
@ -101,19 +103,18 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
Text(
|
Text(
|
||||||
'Biodiversitätsbewertung',
|
'Biodiversitätsbewertung',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.headlineMedium
|
.currentThemeData.textTheme.headlineMedium
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
color: largeTheme.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 532,
|
width: 532,
|
||||||
child: Card(
|
child: Card(
|
||||||
elevation: 4,
|
elevation: 0,
|
||||||
surfaceTintColor:
|
color: orangeColors['primary']?.withOpacity(0.1),
|
||||||
orangeColors['primary']?.withOpacity(0.3),
|
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: const EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
@ -122,14 +123,14 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
Text(
|
Text(
|
||||||
'Fragebögen',
|
'Fragebögen',
|
||||||
textAlign: TextAlign.left,
|
textAlign: TextAlign.left,
|
||||||
style: baseTheme.currentThemeData
|
style: largeTheme.currentThemeData
|
||||||
.textTheme.headlineSmall
|
.textTheme.headlineSmall
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: orangeColors['primary'],
|
color: orangeColors['primary'],
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
LinearPercentIndicator(
|
LinearPercentIndicator(
|
||||||
|
@ -138,7 +139,7 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
animation: true,
|
animation: true,
|
||||||
percent: 0.8,
|
percent: 0.8,
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
backgroundColor: baseTheme
|
backgroundColor: largeTheme
|
||||||
.currentColorScheme.surface,
|
.currentColorScheme.surface,
|
||||||
progressColor:
|
progressColor:
|
||||||
orangeColors['primary'],
|
orangeColors['primary'],
|
||||||
|
@ -165,14 +166,14 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
'4 / 5 abgeschlossen',
|
'4 / 5 abgeschlossen',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.bodyLarge
|
.currentThemeData.textTheme.bodyLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme
|
color: largeTheme
|
||||||
.currentColorScheme.onSurface,
|
.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -181,7 +182,7 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
SizedBox(
|
SizedBox(
|
||||||
width: 532,
|
width: 532,
|
||||||
child: Card(
|
child: Card(
|
||||||
|
@ -196,14 +197,14 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
Text(
|
Text(
|
||||||
'Ergebnisse',
|
'Ergebnisse',
|
||||||
textAlign: TextAlign.left,
|
textAlign: TextAlign.left,
|
||||||
style: baseTheme.currentThemeData
|
style: largeTheme.currentThemeData
|
||||||
.textTheme.headlineSmall
|
.textTheme.headlineSmall
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: greenColors['primary'],
|
color: greenColors['primary'],
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
LinearPercentIndicator(
|
LinearPercentIndicator(
|
||||||
|
@ -212,25 +213,25 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
animation: true,
|
animation: true,
|
||||||
percent: 0.8,
|
percent: 0.8,
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
backgroundColor: baseTheme
|
backgroundColor: largeTheme
|
||||||
.currentColorScheme.surface,
|
.currentColorScheme.surface,
|
||||||
progressColor: greenColors['primary'],
|
progressColor: greenColors['primary'],
|
||||||
barRadius: const Radius.circular(8),
|
barRadius: const Radius.circular(8),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
'Weinberg: 80%',
|
'Weinberg: 80%',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.bodyLarge
|
.currentThemeData.textTheme.bodyLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme
|
color: largeTheme
|
||||||
.currentColorScheme.onSurface,
|
.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
LinearPercentIndicator(
|
LinearPercentIndicator(
|
||||||
|
@ -239,25 +240,25 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
animation: true,
|
animation: true,
|
||||||
percent: 0.52,
|
percent: 0.52,
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
backgroundColor: baseTheme
|
backgroundColor: largeTheme
|
||||||
.currentColorScheme.surface,
|
.currentColorScheme.surface,
|
||||||
progressColor: greenColors['primary'],
|
progressColor: greenColors['primary'],
|
||||||
barRadius: const Radius.circular(8),
|
barRadius: const Radius.circular(8),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
'Landschaft: 52%',
|
'Landschaft: 52%',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.bodyLarge
|
.currentThemeData.textTheme.bodyLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme
|
color: largeTheme
|
||||||
.currentColorScheme.onSurface,
|
.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Row(
|
Row(
|
||||||
children: [
|
children: [
|
||||||
LinearPercentIndicator(
|
LinearPercentIndicator(
|
||||||
|
@ -266,21 +267,21 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
animation: true,
|
animation: true,
|
||||||
percent: 0.27,
|
percent: 0.27,
|
||||||
padding: EdgeInsets.zero,
|
padding: EdgeInsets.zero,
|
||||||
backgroundColor: baseTheme
|
backgroundColor: largeTheme
|
||||||
.currentColorScheme.surface,
|
.currentColorScheme.surface,
|
||||||
progressColor: greenColors['primary'],
|
progressColor: greenColors['primary'],
|
||||||
barRadius: const Radius.circular(8),
|
barRadius: const Radius.circular(8),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Text(
|
Text(
|
||||||
'Betriebsstätte: 27%',
|
'Betriebsstätte: 27%',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.bodyLarge
|
.currentThemeData.textTheme.bodyLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme
|
color: largeTheme
|
||||||
.currentColorScheme.onSurface,
|
.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -302,28 +303,28 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
Text(
|
Text(
|
||||||
'Förderungen',
|
'Förderungen',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.headlineMedium
|
.currentThemeData.textTheme.headlineMedium
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
color: largeTheme.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
Text(
|
Text(
|
||||||
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
|
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme
|
style: largeTheme
|
||||||
.currentThemeData.textTheme.bodyLarge
|
.currentThemeData.textTheme.bodyLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
color: largeTheme.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
_buildProjectCard(
|
_buildProjectCard(
|
||||||
'Projekt A',
|
'Projekt A',
|
||||||
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
|
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacer,
|
largeTheme.verticalSpacer,
|
||||||
_buildProjectCard(
|
_buildProjectCard(
|
||||||
'Projekt B',
|
'Projekt B',
|
||||||
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
|
'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.',
|
||||||
|
@ -350,12 +351,12 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
width: 262,
|
width: 262,
|
||||||
height: 250,
|
height: 250,
|
||||||
child: Card(
|
child: Card(
|
||||||
elevation: 4,
|
elevation: 0,
|
||||||
surfaceTintColor: Colors.white,
|
color: const Color(0xff666666).withOpacity(.1),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
ClipRRect(
|
ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
borderRadius: BorderRadius.circular(4.0),
|
||||||
child: Image.asset(
|
child: Image.asset(
|
||||||
image,
|
image,
|
||||||
),
|
),
|
||||||
|
@ -365,7 +366,7 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
child: Text(
|
child: Text(
|
||||||
title,
|
title,
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
style: baseTheme.currentThemeData.textTheme.headlineSmall
|
style: largeTheme.currentThemeData.textTheme.headlineSmall
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: const Color(0xFF666666),
|
color: const Color(0xFF666666),
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
|
@ -394,13 +395,13 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
Text(
|
Text(
|
||||||
title,
|
title,
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
style: baseTheme.currentThemeData.textTheme.headlineSmall
|
style: largeTheme.currentThemeData.textTheme.headlineSmall
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: greenColors['primary'],
|
color: greenColors['primary'],
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
baseTheme.verticalSpacerSmall,
|
largeTheme.verticalSpacerSmall,
|
||||||
Row(
|
Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
|
@ -411,9 +412,9 @@ class DashboardPageState extends State<DashboardPage> {
|
||||||
overflow: TextOverflow.ellipsis,
|
overflow: TextOverflow.ellipsis,
|
||||||
maxLines: 3,
|
maxLines: 3,
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme.currentThemeData.textTheme.bodyLarge
|
style: largeTheme.currentThemeData.textTheme.bodyLarge
|
||||||
?.copyWith(
|
?.copyWith(
|
||||||
color: baseTheme.currentColorScheme.onSurface,
|
color: largeTheme.currentColorScheme.onSurface,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -6,6 +6,7 @@ import 'package:ambito/src/widgets/appbar/ambito_appbar.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_breadcrumb/flutter_breadcrumb.dart';
|
import 'package:flutter_breadcrumb/flutter_breadcrumb.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
import '../../../main.dart';
|
import '../../../main.dart';
|
||||||
|
|
||||||
|
@ -36,7 +37,9 @@ class StartPageState extends State<StartPage> {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AmbitoAppbar(),
|
appBar: AmbitoAppbar(
|
||||||
|
breakpoint: Breakpoint.fromContext(context),
|
||||||
|
),
|
||||||
body: Column(
|
body: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
|
|
|
@ -2,16 +2,18 @@ import 'package:ambito/main.dart';
|
||||||
import 'package:ambito/src/extensions/extensions.dart';
|
import 'package:ambito/src/extensions/extensions.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:get/get.dart';
|
import 'package:get/get.dart';
|
||||||
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
||||||
|
|
||||||
class AmbitoAppbar extends AppBar {
|
class AmbitoAppbar extends AppBar {
|
||||||
AmbitoAppbar({super.key, List<String>? links})
|
AmbitoAppbar({super.key, List<String>? links, required Breakpoint breakpoint})
|
||||||
: super(
|
: super(
|
||||||
automaticallyImplyLeading: false,
|
automaticallyImplyLeading: false,
|
||||||
leading: Padding(
|
leading: Padding(
|
||||||
padding: const EdgeInsets.all(8),
|
padding: const EdgeInsets.all(8),
|
||||||
child: Hero(
|
child: Hero(
|
||||||
tag: 'logo',
|
tag: 'logo',
|
||||||
child: GestureDetector(
|
child: InkWell(
|
||||||
|
onHover: (value) {},
|
||||||
onTap: () {
|
onTap: () {
|
||||||
Get.toNamed('/');
|
Get.toNamed('/');
|
||||||
},
|
},
|
||||||
|
@ -28,33 +30,46 @@ class AmbitoAppbar extends AppBar {
|
||||||
builder: (context) => _links(context, links),
|
builder: (context) => _links(context, links),
|
||||||
),
|
),
|
||||||
toolbarHeight: 80,
|
toolbarHeight: 80,
|
||||||
backgroundColor: baseTheme.currentColorScheme.primaryContainer,
|
backgroundColor: largeTheme.currentColorScheme.primaryContainer,
|
||||||
actions: [
|
actions: [
|
||||||
|
Text(breakpoint.breakpoint.toString()),
|
||||||
IconButton(
|
IconButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Get.toNamed('/kalender/jahr');
|
Get.toNamed('/');
|
||||||
},
|
},
|
||||||
icon: Icon(
|
icon: Icon(
|
||||||
Icons.calendar_view_month,
|
Icons.notifications,
|
||||||
color: baseTheme.currentColorScheme.primary,
|
color: largeTheme.currentColorScheme.primary,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
IconButton(
|
if (breakpoint >= myBreakpoints.md)
|
||||||
onPressed: () {
|
IconButton(
|
||||||
Get.toNamed('/kalender');
|
onPressed: () {
|
||||||
},
|
Get.toNamed('/kalender/jahr');
|
||||||
icon: Icon(
|
},
|
||||||
Icons.calendar_month,
|
icon: Icon(
|
||||||
color: baseTheme.currentColorScheme.primary,
|
Icons.calendar_view_month,
|
||||||
|
color: largeTheme.currentColorScheme.primary,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
if (breakpoint >= myBreakpoints.md)
|
||||||
IconButton(
|
IconButton(
|
||||||
onPressed: () {},
|
onPressed: () {
|
||||||
icon: Icon(
|
Get.toNamed('/kalender');
|
||||||
Icons.person,
|
},
|
||||||
color: baseTheme.currentColorScheme.primary,
|
icon: Icon(
|
||||||
|
Icons.calendar_month,
|
||||||
|
color: largeTheme.currentColorScheme.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
if (breakpoint >= myBreakpoints.md)
|
||||||
|
IconButton(
|
||||||
|
onPressed: () {},
|
||||||
|
icon: Icon(
|
||||||
|
Icons.person,
|
||||||
|
color: largeTheme.currentColorScheme.primary,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 30,
|
width: 30,
|
||||||
)
|
)
|
||||||
|
@ -63,7 +78,11 @@ class AmbitoAppbar extends AppBar {
|
||||||
|
|
||||||
static Widget _links(BuildContext context, List<String>? links) {
|
static Widget _links(BuildContext context, List<String>? links) {
|
||||||
List<Widget> linkButtons = [];
|
List<Widget> linkButtons = [];
|
||||||
if (links != null && links.isNotEmpty) {
|
logger.d(context.breakpoint.breakpoint);
|
||||||
|
logger.d(myBreakpoints.sm?.breakpoint);
|
||||||
|
if (context.breakpoint.breakpoint >= myBreakpoints.md!.breakpoint &&
|
||||||
|
links != null &&
|
||||||
|
links.isNotEmpty) {
|
||||||
for (String link in links) {
|
for (String link in links) {
|
||||||
linkButtons.add(_linkButton(context, link));
|
linkButtons.add(_linkButton(context, link));
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@ class FieldTitle extends FormWidgetField {
|
||||||
child: Text(
|
child: Text(
|
||||||
text,
|
text,
|
||||||
textAlign: TextAlign.start,
|
textAlign: TextAlign.start,
|
||||||
style: baseTheme.currentThemeData.textTheme.titleLarge,
|
style: largeTheme.currentThemeData.textTheme.titleLarge,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
32
pubspec.lock
32
pubspec.lock
|
@ -270,6 +270,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.0"
|
version: "2.0.0"
|
||||||
|
equatable:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: equatable
|
||||||
|
sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "2.0.5"
|
||||||
expandable_text:
|
expandable_text:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -754,6 +762,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.0"
|
version: "2.0.0"
|
||||||
|
nested:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: nested
|
||||||
|
sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.0"
|
||||||
octo_image:
|
octo_image:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -946,6 +962,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.0"
|
version: "2.1.0"
|
||||||
|
provider:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: provider
|
||||||
|
sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "6.1.2"
|
||||||
pub_semver:
|
pub_semver:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -970,6 +994,14 @@ packages:
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.28.0"
|
version: "0.28.0"
|
||||||
|
screen_breakpoints:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: screen_breakpoints
|
||||||
|
sha256: e8a9f647bfcaa3ae15aa4d4c15dd95f586227b2758b1eddc51aeb09098f5c70d
|
||||||
|
url: "https://pub.dev"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.5"
|
||||||
shared_preferences:
|
shared_preferences:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -53,6 +53,8 @@ dependencies:
|
||||||
timezone: ^0.9.4
|
timezone: ^0.9.4
|
||||||
percent_indicator: ^4.2.3
|
percent_indicator: ^4.2.3
|
||||||
image_downloader_web: ^2.0.6
|
image_downloader_web: ^2.0.6
|
||||||
|
screen_breakpoints: ^1.0.5
|
||||||
|
provider: ^6.1.2
|
||||||
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
|
|
Loading…
Reference in a new issue