Answers for "inkwell not splashing in stack"

0

inkwell not splashing in stack

//Wrap your inkwell with material

Material(
      child: InkWell(
        onTap: () => Navigator.of(context).pop(),
        child: const Padding(
          padding:
             EdgeInsets.symmetric(horizontal: 8, vertical: 4),
         child: Icon(Icons.arrow_back_rounded),
       ),
     ),
   ),
Posted by: Guest on April-15-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language