8 lines
274 B
Dart
8 lines
274 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Constants {
|
|
static const String BASE_URL = "http://127.0.0.1:8062";
|
|
// static const String BASE_URL = "http://smart.gavania.de";
|
|
static const Color MAIN_COLOR = Colors.deepPurple;
|
|
static const double TABLE_RADIUS = 15;
|
|
}
|