unfocusedBorder method
Implementation
Border unfocusedBorder(BuildContext context) {
return Border(
bottom: BorderSide(
color: Theme.of(context).colorScheme.onSurfaceVariant,
width: 1,
),
);
}
Border unfocusedBorder(BuildContext context) {
return Border(
bottom: BorderSide(
color: Theme.of(context).colorScheme.onSurfaceVariant,
width: 1,
),
);
}