Flutter-Auth-Screen-01

Stars
16
Committers
1

Login Screen Using Flutter

This is a simple login screen where we create a custom textInput widget where you can put

```dart
@required this.hint,
@required this.inputIcon,
this.borderRadious = 40.0,
this.keybord = TextInputType.text,
this.iconColor = kPrimary,
this.isPass = false,
this.format,
```

Also, we create a gradient button with an icon.

```dart
final double radious;
final String text;
final IconData icon;
```