mirror of
https://github.com/koloideal/Casha.git
synced 2026-06-10 10:25:28 +03:00
26 lines
583 B
Dart
26 lines
583 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class BynSign extends StatelessWidget {
|
|
final double fontSize;
|
|
final Color color;
|
|
|
|
const BynSign({super.key, required this.fontSize, required this.color});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Transform.translate(
|
|
offset: Offset(0, fontSize * -0.12),
|
|
child: Text(
|
|
'\uE901',
|
|
style: TextStyle(
|
|
fontFamily: 'BynSymbol',
|
|
fontSize: fontSize * 1.1,
|
|
color: color,
|
|
fontWeight: FontWeight.w900,
|
|
height: 1.0,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|