insert pages

This commit is contained in:
Thinzar Win
2020-05-29 16:14:17 +06:30
parent bad27ba5c4
commit f4823d82f8
30 changed files with 1431 additions and 959 deletions

View File

@@ -3,11 +3,12 @@ import 'dart:ui';
import 'package:flutter/cupertino.dart';
const primaryColor = const Color(0xfff00a21);
const secondaryColor = const Color(0xFF0815f1);
const secondaryColor = const Color(0xFF01579b);
const thirdColor = const Color(0xFF0700f1);
const nextColor = const Color(0xFFfa833d);
const buttonColor = const Color(0xFFFFFFFF);
const buttonBkColor = const Color(0xFF268944);
const labelColor = const Color(0xFF757575);
const TextStyle labelStyle =
TextStyle(fontSize: 13, color: Colors.grey, fontWeight: FontWeight.w500);
@@ -24,7 +25,7 @@ TextStyle newLabelStyle(
bool underline = false}) {
return TextStyle(
fontSize: fontSize == null ? 13 : fontSize,
color: color == null ? Colors.grey : color,
color: color == null ? secondaryColor : color,
fontWeight: fontWeight == null ? FontWeight.w500 : fontWeight,
decoration: underline ? TextDecoration.underline : TextDecoration.none);
}
@@ -36,7 +37,7 @@ TextStyle newLabelStyleMM(
bool underline = false}) {
return TextStyle(
fontSize: fontSize == null ? 13 : fontSize,
color: color == null ? Colors.grey : color,
color: color == null ? secondaryColor : color,
fontWeight: fontWeight == null ? FontWeight.w500 : fontWeight,
decoration: underline ? TextDecoration.underline : TextDecoration.none,
fontFamily: "MyanmarUnicode");
@@ -85,7 +86,6 @@ final BoxDecoration tableRowEven = BoxDecoration(
color: Colors.white54,
);
class LoginColors {
const LoginColors();