helpler.dart 334 B

12345678910111213
  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter/material.dart';
  3. class TestBoxDecoration {
  4. static BoxDecoration buildDecoration() {
  5. return BoxDecoration(
  6. border: Border.all(
  7. width: 0.5,
  8. color: const Color.fromARGB(255, 83, 83, 83),
  9. ),
  10. color: Colors.grey[200]);
  11. }
  12. }