12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import 'package:cs_resources/generated/l10n.dart';
- import 'package:cs_resources/theme/app_colors_theme.dart';
- import 'package:flutter/cupertino.dart';
- import 'package:widgets/my_text_view.dart';
- class ScreenTenant extends StatelessWidget {
- const ScreenTenant({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return SingleChildScrollView(
- scrollDirection: Axis.vertical,
- physics: const BouncingScrollPhysics(),
- child: Column(
- mainAxisSize: MainAxisSize.max,
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- MyTextView(
- S.current.who_are_tenants,
- fontSize: 23.5,
- marginTop: 25,
- isFontMedium: true,
- textColor: context.appColors.textBlack,
- ),
- MyTextView(
- S.current.tenants_desc1,
- fontSize: 15,
- marginTop: 22,
- isFontMedium: true,
- textColor: context.appColors.textBlack,
- ),
- MyTextView(
- S.current.tenants_desc2,
- fontSize: 15,
- marginTop: 22,
- isFontMedium: true,
- textColor: context.appColors.textBlack,
- ),
- MyTextView(
- S.current.tenants_desc3,
- fontSize: 15,
- marginTop: 22,
- isFontMedium: true,
- textColor: context.appColors.textBlack,
- ),
- MyTextView(
- S.current.tenants_desc4,
- fontSize: 15,
- marginTop: 22,
- isFontMedium: true,
- textColor: context.appColors.textBlack,
- ),
- ],
- ),
- );
- }
- }
|