16 lines
391 B
Dart
16 lines
391 B
Dart
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;
|
|
}
|