Created
March 27, 2021 21:46
-
-
Save zohaib304/27d3c60191ecbc5c98b304d2abd54840 to your computer and use it in GitHub Desktop.
Flutter Inkwell splash radius
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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), | |
), | |
), | |
), | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thankYou