Absolute positioning of text on a container – flutter
I want to absolutely position a text on a container. return Container( height: 150, width: 150, decoration: BoxDecoration( color: Color(0xE5E5EAee), borderRadius: BorderRadius.circular(20)), child: Text('Camping'), ); This is the present image This is what need to be acheived Did tried to…