12345678910111213 |
- import 'package:flutter/material.dart';
- const textInputDecoration = InputDecoration(
- fillColor: Colors.white,
- filled: true,
- contentPadding: EdgeInsets.all(20.0),
- enabledBorder: OutlineInputBorder(
- borderSide: BorderSide(color: Colors.white, width: 2.0),
- ),
- focusedBorder: OutlineInputBorder(
- borderSide: BorderSide(color: Color.fromRGBO(119, 97, 255, 1.0), width: 2.0),
- ),
- );
|