Fix padding in "Manage Keys Registered To Locks"
This commit is contained in:
parent
91f3088745
commit
d05aede7e7
@ -226,10 +226,10 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
child: Text(key, style: TextStyle(fontSize: 15)),
|
child: Text(key, style: TextStyle(fontSize: 15)),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.all(20),
|
padding: EdgeInsets.fromLTRB(20, 0, 20, 20),
|
||||||
child: TextButton(
|
child: TextButton(
|
||||||
onPressed: () => authentikApiState.start(key),
|
onPressed: () => authentikApiState.start(key),
|
||||||
child: Text("Manage Keys Registered To Lock"),
|
child: Text("Manage Keys Registered To Locks"),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user