Skip to content

Commit 6b80295

Browse files
committed
Fix formatting
1 parent bfb34c6 commit 6b80295

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

lib/screens/configurations_screen.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,15 +218,15 @@ class _ConfigurationsScreenState extends State<ConfigurationsScreen> {
218218
),
219219
Padding(
220220
padding:
221-
const EdgeInsets.symmetric(vertical: 16, horizontal: 32),
221+
const EdgeInsets.symmetric(vertical: 16, horizontal: 32),
222222
child: Container(
223223
width: double.infinity,
224224
child: ElevatedButton(
225225
style: ElevatedButton.styleFrom(
226226
shape: RoundedRectangleBorder(
227227
borderRadius: BorderRadius.circular(5.0),
228228
side:
229-
BorderSide(color: Theme.of(context).primaryColor),
229+
BorderSide(color: Theme.of(context).primaryColor),
230230
),
231231
primary: Provider.of<Mode>(context).isLightMode
232232
? Colors.white
@@ -243,8 +243,10 @@ class _ConfigurationsScreenState extends State<ConfigurationsScreen> {
243243
),
244244
),
245245
onPressed: () async {
246-
var api = await showDialog<Api>(builder: (context) => DiscoverPage(), context: context);
247-
if(api != null){
246+
var api = await showDialog<Api>(
247+
builder: (context) => DiscoverPage(),
248+
context: context);
249+
if (api != null) {
248250
urlController.text = api.url;
249251
usernameController.text = api.username;
250252
passwordController.text = api.password;

0 commit comments

Comments
 (0)