Small astetic fixes.

This commit is contained in:
Matic Ivešić 2026-02-09 21:21:27 +01:00
parent c2ca8b59a3
commit 7467e0f1c7
2 changed files with 27 additions and 10 deletions

View File

@ -5,8 +5,22 @@ class HelpScreen extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final theme = Theme.of(context).colorScheme;
return Scaffold( return Scaffold(
appBar: AppBar(title: const Text('Help')), appBar: AppBar(
backgroundColor: theme.surface,
title: Text("Help", style: TextStyle(color: theme.onSurface)),
leading: Builder(
builder: (context) {
return IconButton(
icon: Icon(Icons.arrow_back_ios_rounded, color: theme.onSurface),
onPressed: () {
Navigator.pop(context);
},
);
},
),
),
body: ListView( body: ListView(
padding: const EdgeInsets.all(16), padding: const EdgeInsets.all(16),
children: [ children: [

View File

@ -95,15 +95,18 @@ class _HomeScreenState extends State<HomeScreen> {
), ),
), ),
), ),
body: ListView.builder( body: Padding(
itemCount: allCommands.length, padding: const EdgeInsets.symmetric(horizontal: 8.0),
itemBuilder: (context, index) { child: ListView.builder(
// You can keep this as 'context' or rename it itemCount: allCommands.length,
return ServerStatusTile( itemBuilder: (context, index) {
command: allCommands[index], // You can keep this as 'context' or rename it
onEdit: () => _editCommand(allCommands[index], index), return ServerStatusTile(
); command: allCommands[index],
}, onEdit: () => _editCommand(allCommands[index], index),
);
},
),
), ),
floatingActionButton: Builder( floatingActionButton: Builder(
builder: (context) { builder: (context) {