mangayomi/lib/views/updates/updates_screen.dart
2023-04-03 15:10:10 +01:00

25 lines
618 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)),
],
),
);
}
}