mangayomi/lib/modules/updates/updates_screen.dart
2023-05-19 16:11:03 +01:00

28 lines
695 B
Dart

import 'package:flutter/material.dart';
class UpdatesScreen extends StatelessWidget {
const UpdatesScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
elevation: 0,
backgroundColor: Colors.transparent,
title: Text(
'Updates',
style: TextStyle(color: Theme.of(context).hintColor),
),
actions: [
IconButton(
splashRadius: 20,
onPressed: () {},
icon: Icon(Icons.refresh, color: Theme.of(context).hintColor)),
],
),
body: const Center(
child: Text("No recent updates"),
),
);
}
}