2024-11-20 17:09:53 +01:00
|
|
|
import 'dart:ui';
|
|
|
|
|
|
|
|
import 'package:screen_breakpoints/screen_breakpoints.dart';
|
|
|
|
|
|
|
|
const supportedLocales = [Locale('de')];
|
|
|
|
const currentLocale = Locale('de');
|
|
|
|
|
|
|
|
/// configure the used breakpoints. Currently only sm is handled separately
|
|
|
|
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: 10,
|
|
|
|
padding: 10,
|
|
|
|
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,
|
|
|
|
);
|
|
|
|
|
2024-12-07 20:53:13 +01:00
|
|
|
const googleApiKey = 'AIzaSyAb2d7gn5CLWnVZTaSapRYHjnZapSP9BQM';
|
|
|
|
|
2024-11-20 17:09:53 +01:00
|
|
|
const baserowToken = 'TFxO7vzBLVRCu9I3VMoHmTuCvSu8aCDi';
|
|
|
|
const baserowIds = {
|
2024-12-07 20:53:13 +01:00
|
|
|
"area": 403344,
|
2024-11-20 17:09:53 +01:00
|
|
|
"measure": 328253,
|
2024-12-04 16:21:50 +01:00
|
|
|
"measure_general": 396946,
|
|
|
|
"measure_details": 342622,
|
|
|
|
"measure_types": 328253,
|
|
|
|
"measure_types_details": 328188,
|
2024-11-20 17:09:53 +01:00
|
|
|
"measure_combination": 328217,
|
|
|
|
"organism": 328255,
|
|
|
|
"funding_program": 328256,
|
2024-12-04 16:21:50 +01:00
|
|
|
"reference_implementation_general": 328465,
|
|
|
|
"reference_implementation_detail": 388324,
|
|
|
|
"evaluation": 400801,
|
2024-11-20 17:09:53 +01:00
|
|
|
"business": 328472,
|
|
|
|
"experience_report": 330802,
|
|
|
|
"approval_requirement": 330806,
|
|
|
|
"service_provider": 330824,
|
2024-12-04 16:21:50 +01:00
|
|
|
"contact_person": 330832,
|
2024-11-20 17:09:53 +01:00
|
|
|
"material": 330836,
|
|
|
|
"source": 334231,
|
2024-12-13 09:41:26 +01:00
|
|
|
"cart": 406916,
|
|
|
|
"cart_element": 407428,
|
2024-11-20 17:09:53 +01:00
|
|
|
};
|