✨ Set up sentry replay
This commit is contained in:
parent
0ed8c2373d
commit
d64a24454d
@ -47,6 +47,8 @@ void main() async {
|
|||||||
'https://c218d44126d59d69301e730498494def@o4506965897117696.ingest.us.sentry.io/4508346768228352';
|
'https://c218d44126d59d69301e730498494def@o4506965897117696.ingest.us.sentry.io/4508346768228352';
|
||||||
options.tracesSampleRate = 1.0;
|
options.tracesSampleRate = 1.0;
|
||||||
options.profilesSampleRate = 1.0;
|
options.profilesSampleRate = 1.0;
|
||||||
|
options.experimental.replay.sessionSampleRate = 1.0;
|
||||||
|
options.experimental.replay.onErrorSampleRate = 1.0;
|
||||||
},
|
},
|
||||||
appRunner: () => runApp(const SolianApp()),
|
appRunner: () => runApp(const SolianApp()),
|
||||||
);
|
);
|
||||||
|
10
lib/screens/post/post_search.dart
Normal file
10
lib/screens/post/post_search.dart
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user