Gradle updated, fonts added & structure improvements
parent
ac98216630
commit
8470495332
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,38 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class LoginScreen extends StatefulWidget {
|
||||||
|
LoginScreen({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_LoginScreenState createState() {
|
||||||
|
return _LoginScreenState();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class _LoginScreenState extends State<LoginScreen> {
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold(
|
||||||
|
body: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Text("English"),
|
||||||
|
Text("Arabic"),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,13 +1,13 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
const Color primaryColor = Colors.white;
|
const Color primaryColor = Color(0xffF8F8F8);
|
||||||
|
const Color secondaryColor = Color(0xff2BB8A6);
|
||||||
const Color accentColor = Colors.blue;
|
const Color accentColor = Colors.blue;
|
||||||
const Color appBackgroundColor = Colors.white;
|
const Color appBackgroundColor = Colors.white;
|
||||||
Color? accentColorDark = Colors.green[800];
|
Color? accentColorDark = Colors.green[800];
|
||||||
const Color borderColor = Colors.blueGrey;
|
const Color borderColor = Colors.blueGrey;
|
||||||
Color? borderLightColor = Colors.blueGrey[50];
|
Color? borderLightColor = Colors.blueGrey[50];
|
||||||
Color backgroudColor =
|
Color backgroudColor = Colors.blueGrey[50]!.withOpacity(0.5);
|
||||||
Colors.blueGrey[50]!.withOpacity(0.5) ?? Colors.transparent;
|
|
||||||
const Color iconColor = Colors.blueGrey;
|
const Color iconColor = Colors.blueGrey;
|
||||||
Color? headingColor = Colors.blueGrey[800];
|
Color? headingColor = Colors.blueGrey[800];
|
||||||
Color? txtColor = Colors.blueGrey[500];
|
Color? txtColor = Colors.blueGrey[500];
|
||||||
|
|||||||
Loading…
Reference in New Issue