I want to make rive animation background and feel whole screen. Changing height and width to MediaQuery... does not work. It changes size but proportion stays the same
This is how rive widget looks like for me:
Center(
child: _riveArtboard == null
? const SizedBox()
: Rive(artboard: _riveArtboard),
),
thank you in advance
edit: SOLUTION
Container(
height: h,
width: w,
child: Center(
child: _riveArtboard == null
? const SizedBox()
: Rive(fit: BoxFit.fill, artboard: _riveArtboard),
),
),