https://i.stack.imgur.com/6SayB.png
how do I add text there? I tried many things but nothing works.
CodePudding user response:
Do you need wrap your FlutterMap inside Stack widget, like this.
return Scaffold(
body: Stack(
[
FluterMap(...),
Text('Your text')
]
)
);
CodePudding user response:
Use stack Widget Like below
https://api.flutter.dev/flutter/widgets/Stac…
return Scaffold(
body: Stack(
children: [
FluterMap(...),
Text('Your text')
]
)
);
