You are on page 1of 4

# App Products

A new Flutter project.

## Working

:taco: ``:taco:``

:building_construction: ```:building_construction:```

--------------------------------------

:alien: ``:alien:``

:apple: ``:apple:``

:recycle: ``:recycle:``

:speech_balloon: ``:speech_balloon:``

:brain: ``:brain: ``

:octocat: ``:octocat: ``

borderRadius: borderRadius:
BorderRadius.circular(10)), BorderRadius.circular(
,
disabledColor: Colors.grey,
elevation: 0,
color: Colors.deepPurple,
onPressed: loginForm.isLoading
? null
: () async {

Expand All @@ -105,7 +105,7 @@ class _LoginForm extends StatelessWidget {

loginForm.isLoading = true;
await Future.delayed(const Duration(seconds:
2));

loginForm.isLoading = false;
// ignore: use_build_context_synchronously
Navigator.pushReplacementNamed(context,'Home');

Expand Down

6 changes: 3 additions & 3 deletions6 lib/ui/input_decorations.dart

Expand
@@ -10,12 +10,12 @@ class InputDecorations {
Up

return InputDecoration( return InputDecoration(


enabledBorder: const UnderlineInputBorder( enabledBorder: const UnderlineIn
borderSide: BorderSide( borderSide: BorderSide(
color: Colors.purple, color: Colors.orangeAccent,
), ),
), ),
focusedBorder: const UnderlineInputBorder( focusedBorder: const UnderlineIn
borderSide: BorderSide( borderSide: BorderSide(
color: Colors.deepPurple, color: Colors.orange,
width: 2, width: 2,
), ),
), ),

Expand
@@ -25,7 +25,7 @@ class InputDecorations {
All

color: Colors.grey, color: Colors.grey,


), ),
prefixIcon: prefixIcon != null prefixIcon: prefixIcon != null
?Icon(prefixIcon, color: Colors.deepPurple) ?Icon(prefixIcon, color: Colors.
:null :null
); );
} }

Expand
Down

10 changes: 5 additions & 5 deletions10 lib/widgets/auth_background.dart

Expand
@@ -61,10 +61,10 @@ class _PurpleBox extends StatelessWidget {
Up

child: const Stack( child: const Stack(


children: [ children: [
// -- --- --- // -- --- ---
Positioned(top: 30, left: 70, child: _Bubble()), Positioned(top: 30, left: 55, ch
Positioned(top: -15, left: 320, child: _Bubble()), Positioned(top: -15, left: 320,
Positioned(top: -50, left: -50, child: _Bubble()), Positioned(top: -50, left: -50,
Positioned(bottom: 10, left: -40, child: _Bubble()), Positioned(bottom: -10, left: -4
Positioned(bottom: 20, left: 270, child: _Bubble()), Positioned(bottom: 20, left: 270
Positioned(bottom: -50, left: 120, child: _Bubble()), Positioned(bottom: -50, left: 12
], ],

Expand
@@ -76,8 +76,8 @@ class _PurpleBox extends StatelessWidget {
All

BoxDecoration _purpleBackground() => const BoxDecoration _purpleBackground(


BoxDecoration( BoxDecoration(
gradient: LinearGradient( gradient: LinearGradient(
colors: [ colors: [
Color.fromRGBO(63, 63, 156, 1), Color.fromRGBO(243, 125, 0, 1),
Color.fromRGBO(90, 70, 178, 1), Color.fromRGBO(185, 100, 1, 1),
], ],
), ),
); );

Expand
@@ -94,7 +94,7 @@ class _Bubble extends StatelessWidget {
All

height: 100, height: 100,


decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(100), borderRadius: BorderRadius.circu
color: const Color.fromRGBO(255, 255, 255, 0.06), color: const Color.fromARGB(25,
), ),
); );

You might also like