12345678910111213 |
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/material.dart';
- class TestBoxDecoration {
- static BoxDecoration buildDecoration() {
- return BoxDecoration(
- border: Border.all(
- width: 0.5,
- color: const Color.fromARGB(255, 83, 83, 83),
- ),
- color: Colors.grey[200]);
- }
- }
|