searchInputDecoration property

InputDecoration? searchInputDecoration
final

Custom InputDecoration for Search TextField.

This option has no effect if title is used.

If null used default:

             InputDecoration(
                hintText: fieldHintText,
                hintStyle: TextStyle(
                  color: keepAppBarColors
                      ? Theme.of(context).canvasColor
                      : Theme.of(context).textTheme.headlineSmall?.color,
                ),
                enabledBorder: InputBorder.none,
                focusedBorder: InputBorder.none,
                border: InputBorder.none,
              ),

Implementation

final InputDecoration? searchInputDecoration;