6-3-1
加入文字邊框
- 安裝 https://pub.dev/packages/bordered_text
- 導入
import 'package:bordered_text/bordered_text.dart';
- 使用
BorderedText(
strokeWidth: 1.0,
strokeColor: Colors.black54,
child: Text(
'文字',
style: TextStyle(
color: Colors.white,
fontSize: 11.0,
fontWeight: FontWeight.bold,
),
),
),