I have Text on the menu, when clicked, a specific link opened in my phone browser.
Padding(
padding: const EdgeInsets.only(left:20.0),
child: GestureDetector(
onTap: (){
//for example link https:google.com
},
child:Text(
"Rate the app",
style: TextStyle(
fontSize: 18.0
),
),
),
),