I am using the Share package so that when I click on the icon I can share the link but the page moves to the status bar, this issue comes to android only.
Screenshots: (In the second screenshot, the title of the page moved in the status bar)
Before Share

After Share

class FeesPage extends StatelessWidget {
const FeesPage({super.key});
Future<void> share() async {
await Share.share("Example share", subject: "Test subject");
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
child: Text('Share text and link'),
onPressed: share,
),
ElevatedButton(
child: Text('Share local file'),
onPressed: share,
),
],
),
),
),
);
}
}