Skip to content

Instantly share code, notes, and snippets.

View bhavishassai's full-sized avatar

Bhavish bhavishassai

View GitHub Profile
@bhavishassai
bhavishassai / check_if_logged_in.dart
Last active August 14, 2022 12:56
checkIfLoggedIn
Future<User?> checkIfLoggedIn() async {
try {
_user = await _account.get();
return _user;
} catch (e) {
return null;
}
}
@bhavishassai
bhavishassai / outlined_textformfield.dart
Created August 22, 2021 13:19
Outlined TextFormField
Padding(
padding: const EdgeInsets.all(16.0),
child: TextFormField(
decoration: InputDecoration(
labelText: "Name",
prefixIcon: Icon(
Icons.person,
),
border: OutlineInputBorder(),
),
@bhavishassai
bhavishassai / text_form_field.dart
Created August 22, 2021 13:04
Simple Flutter TextFormField
Padding(
padding: const EdgeInsets.all(16.0),
child: TextFormField(),
)