We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02bbdbd commit b5f3059Copy full SHA for b5f3059
example/lib/main.dart
@@ -150,11 +150,16 @@ class _MyAppState extends State<MyApp> {
150
onPressed: _login(_withFacebook),
151
child: const Text('Facebook'),
152
),
153
- const SizedBox(height: 8),
154
- TextField(
155
- controller: textEditingController,
+ Padding(
+ padding: const EdgeInsets.all(8.0),
+ child: TextField(
156
+ controller: textEditingController,
157
+ decoration: const InputDecoration(
158
+ border: OutlineInputBorder(),
159
+ hintText: "[email protected]",
160
+ ),
161
162
163
ElevatedButton(
164
onPressed: _login(_withEmailPasswordless),
165
child: const Text('Email Passwordless'),
0 commit comments