Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

flutter inner box shadow plugin

decoration: BoxDecoration(
        boxShadow: [
          const BoxShadow(
            color: your_shadow_color,
          ),
          const BoxShadow(
            color: your_bg_color,
            spreadRadius: -12.0,
            blurRadius: 12.0,
          ),
        ],
      ),
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #flutter #box #shadow #plugin
ADD COMMENT
Topic
Name
8+1 =