Home > Back-end >  flutter icon as background with overflow
flutter icon as background with overflow

Time:01-22

I'm trying to recreate the weather app design from this link enter image description here

code :

return Stack(
      children: [
        Positioned(
          left: MediaQuery.of(context).size.width * 0.35,
          top: MediaQuery.of(context).size.height * 0.4,
          child: FractionalTranslation(
              translation: const Offset(-0.5, -0.5),
              child: child()),
        )
      ],
    );
  •  Tags:  
  • Related