67 lines
1.4 KiB
Dart
67 lines
1.4 KiB
Dart
|
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,
|
||
|
);
|
||
|
|
||
|
const baserowToken = 'TFxO7vzBLVRCu9I3VMoHmTuCvSu8aCDi';
|
||
|
const baserowIds = {
|
||
|
"measure": 328253,
|
||
|
"measure_combination": 328217,
|
||
|
"organism": 328255,
|
||
|
"funding_program": 328256,
|
||
|
"factsheet": 328273,
|
||
|
"location_requirements": 328188,
|
||
|
"reference_implementation": 328465,
|
||
|
"business": 328472,
|
||
|
"experience_report": 330802,
|
||
|
"approval_requirement": 330806,
|
||
|
"service_provider": 330824,
|
||
|
"service_provider_contact_person": 330832,
|
||
|
"material": 330836,
|
||
|
"source": 334231,
|
||
|
"tree_type": 342622,
|
||
|
"aenderungfactsheet": 330946,
|
||
|
};
|