Files
syncrow-web/lib/pages/device_managment/shared/celciuse_symbol.dart
ashrafzarkanisala d94ec25003 changing ac bloc
2024-08-26 00:48:29 +03:00

18 lines
354 B
Dart

import 'package:flutter/material.dart';
class CelsiusSymbol extends StatelessWidget {
const CelsiusSymbol({this.color, super.key});
final Color? color;
@override
Widget build(BuildContext context) {
return Text(
'°C',
style: Theme.of(context).textTheme.bodySmall!.copyWith(
color: color,
),
);
}
}