I am writing an application in flutter that has 4 tabbed views, kinda like the stock android phone app or clock app. One of those views hash a floating action button that wh
class _RepoInfoState extends State with AutomaticKeepAliveClientMixin {
@override
bool get wantKeepAlive => true; // Note here
@override
Widget build(BuildContext context) {
super.build(context); // Note here
return Text('嘿');
}
}