15 lines
664 B
Dart
15 lines
664 B
Dart
import 'package:flutter/material.dart' show GlobalKey, NavigatorState;
|
|
|
|
const addMountTitle = 'Add New Mount';
|
|
const appSettingsTitle = 'Portal Settings';
|
|
const appTitle = 'Repertory Management Portal';
|
|
const databaseTypeList = ['rocksdb', 'sqlite'];
|
|
const downloadTypeList = ['default', 'direct', 'ring_buffer'];
|
|
const eventLevelList = ['critical', 'error', 'warn', 'info', 'debug', 'trace'];
|
|
const padding = 15.0;
|
|
const protocolTypeList = ['http', 'https'];
|
|
const providerTypeList = ['Encrypt', 'Remote', 'S3', 'Sia'];
|
|
const ringBufferSizeList = ['128', '256', '512', '1024', '2048'];
|
|
|
|
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
|