mirror of
https://github.com/foss42/apidash.git
synced 2025-06-03 16:27:06 +08:00
12 lines
246 B
Dart
12 lines
246 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
final cardShape = RoundedRectangleBorder(
|
|
side: const BorderSide(
|
|
color: Colors.white70,
|
|
width: 1,
|
|
),
|
|
borderRadius: BorderRadius.circular(10),
|
|
);
|
|
|
|
final colorErrorMsg = Colors.grey.shade500;
|