update
This commit is contained in:
parent
3e6781a0bd
commit
5469c484e1
10 changed files with 204 additions and 48 deletions
14
lib/widgets/text_widget.dart
Normal file
14
lib/widgets/text_widget.dart
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
|
||||
class TextWidget extends StatelessWidget {
|
||||
final String text;
|
||||
|
||||
const TextWidget({super.key, required this.text});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Text(text,
|
||||
style: GoogleFonts.outfit(textStyle: const TextStyle(color: Color.fromRGBO(255, 255, 255, 1), fontSize: 32)));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue