searchfield icon indicating copy to clipboard operation
searchfield copied to clipboard

Multiple color options in SearchInputDecoration don't apply

Open edeuss opened this issue 10 months ago • 1 comments

I have set all 4 colors and only the cursor color seems to apply to the InputDecoration, the borderRadius radius works correctly for the OutlineInputBorder (weirdly just not the color).

searchInputDecoration: SearchInputDecoration(
          cursorColor: Colors.redAccent,
         focusColor: Colors.redAccent,
        border: OutlineInputBorder(
         borderRadius: BorderRadius.circular(8),
             borderSide: BorderSide(
             color: Colors.redAccent,
        ),
      ),
     fillColor: Colors.redAccent,
),
Screenshot 2024-12-28 at 11 22 58

edeuss avatar Dec 28 '24 19:12 edeuss