constants.dart 399 B

12345678910111213
  1. import 'package:flutter/material.dart';
  2. const textInputDecoration = InputDecoration(
  3. fillColor: Colors.white,
  4. filled: true,
  5. contentPadding: EdgeInsets.all(20.0),
  6. enabledBorder: OutlineInputBorder(
  7. borderSide: BorderSide(color: Colors.white, width: 2.0),
  8. ),
  9. focusedBorder: OutlineInputBorder(
  10. borderSide: BorderSide(color: Color.fromRGBO(119, 97, 255, 1.0), width: 2.0),
  11. ),
  12. );