HomeServer/frontend/lib/constants.dart

9 lines
274 B
Dart
Raw Normal View History

2023-10-13 09:50:50 +00:00
import 'package:flutter/material.dart';
2023-10-11 07:57:37 +00:00
class Constants {
static const String BASE_URL = "http://127.0.0.1:8062";
// static const String BASE_URL = "http://smart.gavania.de";
2023-10-13 09:50:50 +00:00
static const Color MAIN_COLOR = Colors.deepPurple;
2023-10-14 09:33:49 +00:00
static const double TABLE_RADIUS = 15;
2023-10-11 07:57:37 +00:00
}