yubioath-flutter/lib/android/qr_scanner/qr_scanner_widgets.dart
2023-11-23 16:00:43 +01:00

17 lines
369 B
Dart

import 'package:flutter/material.dart';
class SmallWhiteText extends StatelessWidget {
final String _text;
const SmallWhiteText(this._text, {super.key});
@override
Widget build(BuildContext context) => Text(
_text,
style: Theme.of(context)
.textTheme
.bodySmall
?.copyWith(color: Colors.white),
);
}