Skip to content

Instantly share code, notes, and snippets.

@slamdon
Last active February 15, 2020 06:18
Show Gist options
  • Select an option

  • Save slamdon/c04ed86aebcb3ce9152b44927665a9c0 to your computer and use it in GitHub Desktop.

Select an option

Save slamdon/c04ed86aebcb3ce9152b44927665a9c0 to your computer and use it in GitHub Desktop.
RectWithPadding
return Padding(
padding: EdgeInsets.symmetric(
horizontal: 16,
),
child: ClipRRect(
borderRadius: BorderRadius.circular(20),
child: Stack(
fit: StackFit.expand,
children: <Widget>[
image,
imageOverlayGradient,
_buildTextContainer(),
],
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment