Fix admin icon UI and lockfile

This commit is contained in:
kihong.kim
2026-01-24 22:32:05 +09:00
parent 9e6a265a7a
commit b758ef00a0
3 changed files with 177 additions and 3 deletions

View File

@@ -67,7 +67,20 @@ class _TvDashboardScreenState extends State<TvDashboardScreen> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const DigitalClockWidget(),
const WeatherWidget()
Row(
mainAxisSize: MainAxisSize.min,
children: [
const WeatherWidget(),
const SizedBox(width: 16),
IconButton(
icon: const Icon(Icons.settings,
color: Colors.white70),
onPressed: () {
Navigator.of(context).pushNamed('/admin');
},
),
],
)
],
),
),