Tuesday, 6 August 2019
Flutter Simple Login Example
A new flutter demo application built to show users how to construct a simple login page with only the use of Text Fields and TextEditingControllers, and without the user of a built-in Form.
Here is an example of the application in action:
GitHub
A simple login example using only TextFields and TextEditingControllers — Read More
Latest commit to the master branch on 9-16-2018
Download as zipWallpaper App made with Flutter
This is a wallpaper app made with flutter.
Concepts used:
- State Management using BLoC pattern
- Dynamic Theming
- Navigation Using PageViews and BottomNavigationBar
flutter-pinbox
This is a library for enter a PIN on flutter/dart. You can enter one digit per textField box.
The detail
The library locate at path lib/pinbox.dart. You can use function pinBoxs to create a pin boxes. The function will return array of Widget class that contain many Pinbox.
Function
pinBoxs(double width, List cons, Color boxColor, Color textColor, BuildContext context, bool show)
width = Width of one pin box
cons = Array of TextEditingController for each pin box
boxColor = color of pin box
textColor = color of text in pin box
context = BuildContext of the App
show = display digit to user or not (true => show, false => not show)
cons = Array of TextEditingController for each pin box
boxColor = color of pin box
textColor = color of text in pin box
context = BuildContext of the App
show = display digit to user or not (true => show, false => not show)
Example
You can see the example of usage in path /lib/main.dart.
After you run the file you will get the result as two pictures below.
After you run the file you will get the result as two pictures below.
GitHub
UI for enter a PIN on flutter/dart, one digit per textField box. — Read More
Latest commit to the master branch on 9-3-2018
Download as zipf_imc_calc
Simples exemplo utilizando Flutter. TextFormFilde, TextField para validação de campos.
GitHub
Simples exemplo utilizando Flutter. TextFormFilde, TextField para validação de campos. — Read More
Latest commit to the master branch on 4-30-2019
Download as zip