criada as telas register_home_screen.dart, register_individual_screen.dart e splash_screen.dart
This commit is contained in:
@@ -5,16 +5,18 @@ import 'package:rkm/widgets/text_default.dart';
|
||||
|
||||
class TitleContainers extends StatelessWidget {
|
||||
String title;
|
||||
double width;
|
||||
|
||||
TitleContainers({
|
||||
required this.title
|
||||
required this.title,
|
||||
this.width = double.infinity
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
padding: ConstVariable().marginHightInput,
|
||||
width: double.infinity,
|
||||
width: width,
|
||||
color: ColorPalette.titleContainer,
|
||||
child: TextDefault(text: title,fontWeigth: FontWeight.bold,textAlign: TextAlign.center,color: ColorPalette.black54,),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user