mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-14 17:25:47 +00:00
21 lines
460 B
Dart
21 lines
460 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_app/utils/context_extension.dart';
|
|
|
|
class TitleLarge extends StatelessWidget {
|
|
const TitleLarge({
|
|
required this.text,
|
|
super.key,
|
|
});
|
|
|
|
final String text;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => Padding(
|
|
padding: const EdgeInsets.only(top: 20, bottom: 10),
|
|
child: SelectableText(
|
|
text,
|
|
style: context.titleLarge,
|
|
),
|
|
);
|
|
}
|