App review reminder

This commit is contained in:
Hillel Coren 2022-07-04 13:03:14 +03:00
parent f438e9a3d2
commit 3ad4be2efd
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class ReviewApp extends StatelessWidget {
const ReviewApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Placeholder();
}
}