1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-20 21:25:48 +08:00

Remove unused class

This commit is contained in:
Vishesh Handa
2021-07-29 12:53:38 +02:00
parent c6665fa63e
commit e946c87229

@ -193,25 +193,6 @@ class __CurrentRepoState extends State<_CurrentRepo>
}
}
class ProButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
var theme = Theme.of(context);
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10),
color: theme.scaffoldBackgroundColor,
boxShadow: [
BoxShadow(color: theme.accentColor, spreadRadius: 0),
],
),
padding: const EdgeInsets.all(8.0),
child: Text('PRO', style: theme.textTheme.button),
);
}
}
class ThemeSwitcherButton extends StatelessWidget {
@override
Widget build(BuildContext context) {