mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
initialized Dashboard Page
This commit is contained in:
20
lib/features/shared_widgets/text_widgets/title_large.dart
Normal file
20
lib/features/shared_widgets/text_widgets/title_large.dart
Normal file
@ -0,0 +1,20 @@
|
||||
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,
|
||||
),
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user