screen_tenant.dart 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import 'package:cs_resources/generated/l10n.dart';
  2. import 'package:cs_resources/theme/app_colors_theme.dart';
  3. import 'package:flutter/cupertino.dart';
  4. import 'package:widgets/my_text_view.dart';
  5. class ScreenTenant extends StatelessWidget {
  6. const ScreenTenant({Key? key}) : super(key: key);
  7. @override
  8. Widget build(BuildContext context) {
  9. return SingleChildScrollView(
  10. scrollDirection: Axis.vertical,
  11. physics: const BouncingScrollPhysics(),
  12. child: Column(
  13. mainAxisSize: MainAxisSize.max,
  14. crossAxisAlignment: CrossAxisAlignment.start,
  15. children: [
  16. MyTextView(
  17. S.current.who_are_tenants,
  18. fontSize: 23.5,
  19. marginTop: 25,
  20. isFontMedium: true,
  21. textColor: context.appColors.textBlack,
  22. ),
  23. MyTextView(
  24. S.current.tenants_desc1,
  25. fontSize: 15,
  26. marginTop: 22,
  27. isFontMedium: true,
  28. textColor: context.appColors.textBlack,
  29. ),
  30. MyTextView(
  31. S.current.tenants_desc2,
  32. fontSize: 15,
  33. marginTop: 22,
  34. isFontMedium: true,
  35. textColor: context.appColors.textBlack,
  36. ),
  37. MyTextView(
  38. S.current.tenants_desc3,
  39. fontSize: 15,
  40. marginTop: 22,
  41. isFontMedium: true,
  42. textColor: context.appColors.textBlack,
  43. ),
  44. MyTextView(
  45. S.current.tenants_desc4,
  46. fontSize: 15,
  47. marginTop: 22,
  48. isFontMedium: true,
  49. textColor: context.appColors.textBlack,
  50. ),
  51. ],
  52. ),
  53. );
  54. }
  55. }