Set up sentry replay

This commit is contained in:
2024-11-23 18:10:50 +08:00
parent 0ed8c2373d
commit d64a24454d
2 changed files with 12 additions and 0 deletions

View File

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