i have a problem in my flutter project, as you can see on the picture, I am not able to see my text, placing this text above png pictures does not help. I am able to see my text for a second, before my png photos are uploaded. It is like those photos where always "on top" of my screen, how to place them belowe? Size of a pictures is ofcourse not a problem, the only problem is why i can't see my text.
Scaffold(
body: SizedBox.expand(
child: Container(
color: Colors.red,
//padding: EdgeInsets.only(left: 10),
child: FittedBox(
fit: BoxFit.fitWidth,
child: Stack(children: [
Image.asset('assets/images/bigWoman.png'),
Image.asset('assets/images/bigWomanBlueblueWorld.png'),
Container(
child: Text("my text"),
),
])),
),
),
backgroundColor: Theme.of(context).backgroundColor,
);
my thin picture, when i am not using BoxFit.fitWidth, and this shuld be a problem: