Skip to content

Instantly share code, notes, and snippets.

@zohaib304
Created March 27, 2021 21:46
Show Gist options
  • Save zohaib304/27d3c60191ecbc5c98b304d2abd54840 to your computer and use it in GitHub Desktop.
Save zohaib304/27d3c60191ecbc5c98b304d2abd54840 to your computer and use it in GitHub Desktop.
Flutter Inkwell splash radius
Container(
margin: EdgeInsets.symmetric(horizontal: 10),
child: InkWell(
customBorder: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
onTap: () {},
child: Ink(
height: 100,
decoration: BoxDecoration(
color: Colors.purpleAccent,
borderRadius: BorderRadius.circular(10),
),
),
),
)
@Minhal9911
Copy link

thankYou

@javadsaadat
Copy link

thankYou

@Ahmed-Mechrir
Copy link

thankYou

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment