From f395be7b89920b4d4bf7f8d60da0401288cdd769 Mon Sep 17 00:00:00 2001 From: Gandharvdalal <43866043+Gandharvdalal@users.noreply.github.com> Date: Fri, 25 Oct 2019 16:25:43 +0530 Subject: [PATCH] Create login(updated).dart --- login(updated).dart | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 login(updated).dart diff --git a/login(updated).dart b/login(updated).dart new file mode 100644 index 0000000..0573f51 --- /dev/null +++ b/login(updated).dart @@ -0,0 +1,17 @@ +import 'package:flutter/material.dart'; + +final loginTheme = ThemeData( + primaryColor: Colors.blue[900], + hintColor: Colors.blue[900], + primarySwatch: Colors.blue, + dividerColor: Colors.white, + scaffoldBackgroundColor: Colors.white, + cursorColor: Colors.blue[800], + brightness: Brightness.light, + + textTheme: TextTheme( + display3: TextStyle(fontSize: 12.0, color: Colors.white70), + button: TextStyle(fontSize: 16, color: Colors.white), //Used + caption: TextStyle(fontSize: 14, color: Colors.white), //Used + ), +);