GardenPlanner/lib/constance.dart

16 lines
391 B
Dart
Raw Permalink Normal View History

2023-06-25 10:13:39 +02:00
import 'package:flutter/material.dart';
class Constance {
static String get apptitle => 'Garden Beet Planner';
static String get apiLocation => 'https://cpd.vierling.cloud';
static String get defaultDescription => 'nchts zu tun';
static int get maxNumberOfRows => 3;
static Color get defaultColor => Colors.brown.withOpacity(0.5);
static bool get sidebarAtStart => true;
}