Fix padding in "Manage Keys Registered To Locks"

This commit is contained in:
lemoer 2025-07-05 23:57:44 +02:00
parent 91f3088745
commit d05aede7e7

View File

@ -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"),
), ),
), ),
], ],