File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments