Added detailst design
This commit is contained in:
@@ -17,4 +17,6 @@ class AssetsManager {
|
||||
static const location = 'assets/icons/location.svg';
|
||||
static const arrowCircleLeft = 'assets/icons/arrow-circle-left.svg';
|
||||
static const arrowCircleRight = 'assets/icons/arrow-circle-right.svg';
|
||||
static const arrowLeft = 'assets/svgs/arrow_left.svg';
|
||||
static const export = 'assets/svgs/export.svg';
|
||||
}
|
||||
|
||||
@@ -20,15 +20,21 @@ class AppColors {
|
||||
static const Color successColor = Color(0xFF28A745);
|
||||
static const Color errorColor = Color(0xFFDC3545);
|
||||
static const Color warningColor = Color(0xFFFFC107);
|
||||
|
||||
static const Color jellyBean = Color(0xFF34BCCB);
|
||||
static const Color grey = Color(0xFF555555);
|
||||
static const Color grey50 = Color(0xFF9E9E9E);
|
||||
static const Color grey60 = Color(0xFF777777);
|
||||
static const Color grey70 = Color(0xFF444444);
|
||||
static const Color grey80 = Color(0xFF222222);
|
||||
static const Color grey10 = Color(0xFFF4F4F4);
|
||||
static const Color grey20 = Color(0xFFE3E3E3);
|
||||
static const Color grey0 = Color(0xFFFCFCFC);
|
||||
static const Color backgroundColor = Color(0xFFFFFFFF);
|
||||
static const Color borderColor = Color(0xFFE1E1E1);
|
||||
static const Color primary2 = Color(0xFFE5EFFF);
|
||||
static const Color paleOrange = Color(0xFFfff7ee);
|
||||
static const Color red10 = Color(0xFFC02525);
|
||||
static const Color lightBlue = Color(0xFFe8ecfc);
|
||||
static const Color cyanAqua = Color(0xFFd6f4f8);
|
||||
static const Color cyanTeal = Color(0xFF24A6B4);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
import 'package:tm_app/views/detail/detail_screen.dart';
|
||||
import '../../views/home/home_screen.dart';
|
||||
import '../../views/login/login_screen.dart';
|
||||
import '../../views/profile/profile_screen.dart';
|
||||
import '../../views/tenders/tenders_screen.dart';
|
||||
import 'app_shell_screen.dart';
|
||||
@@ -31,7 +30,7 @@ class LoginScreenRoute extends GoRouteData with _$LoginScreenRoute {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context, GoRouterState state) {
|
||||
return const LoginScreen();
|
||||
return const TenderDetailScreen();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user