Ported Progress Detail Screen to PlatformScaffold Signed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
11 lines
385 B
Dart
11 lines
385 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:time_progress_tracker/models/app_settings.dart';
|
|
|
|
const txtActiveProgressesScreen = "Active Progresses";
|
|
const txtInactiveProgressesScreen = "Inactive Progresses";
|
|
const txtSettingsScreen = "Settings";
|
|
const defaultAppSettings = AppSettings(
|
|
doneColor: Colors.green,
|
|
leftColor: Colors.red,
|
|
duration: Duration(days: 365),
|
|
); |