Home > database >  Is there any way to Circle pop-up into full screen in flutter
Is there any way to Circle pop-up into full screen in flutter

Time:04-15

I try to animate using height as radius also but that's not working outside screen it seems impossible. I want to make this circle avatar cover all screen but it stop whenever radius is max to device width/2 or height/2.

CodePudding user response:

Wrap your CircleAvatar with Transform.scale() and increase its scale property.

  • Related