mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-11-27 14:44:56 +00:00
changing ac bloc
This commit is contained in:
17
lib/pages/device_managment/shared/celciuse_symbol.dart
Normal file
17
lib/pages/device_managment/shared/celciuse_symbol.dart
Normal file
@ -0,0 +1,17 @@
|
||||
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,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user