Skip to content

Instantly share code, notes, and snippets.

@5lineofcode
Last active November 4, 2018 19:09
Show Gist options
  • Save 5lineofcode/0b4b9f5072820d86c76afecdcdd254e8 to your computer and use it in GitHub Desktop.
Save 5lineofcode/0b4b9f5072820d86c76afecdcdd254e8 to your computer and use it in GitHub Desktop.
form_element
/*
StandartInput
Rule:
ID dan labelText WAJIB di isi
*/
/*
Polos
*/
StandartInput(
id: "namaLengkap",
labelText: "Nama Lengkap",
),
/*
Menggunakan ICON
*/
StandartInput(
id: "namaLengkap",
labelText: "Nama Lengkap",
iconName: Icons.people,
),
/*
Input Angka
*/
StandartInput(
id: "namaLengkap",
labelText: "Nama Lengkap",
iconName: Icons.people,
keyboardType: TextInputType.number,
),
/*
Input Password
*/
StandartInput(
id: "password",
labelText: "Password",
usePasswordMask: true,
),
/*
Menonaktifkan Fitur AutoSelect ketika Focus
*/
StandartInput(
id: "namaLengkap",
labelText: "Nama Lengkap",
iconName: Icons.people,
autoSelectText: true,
),
/*
Untuk mencari lokasi, terintegrasi dengan Google Place Autocomplete/Queryautocomplete/Nearbysearch dll
*/
GooglePlaceAutocompleteSearchWidget(
id: "lokasi",
),
@5lineofcode
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment