screen_owner.dart 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 ScreenOwner extends StatelessWidget {
  6. const ScreenOwner({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_owners,
  18. fontSize: 23.5,
  19. marginTop: 25,
  20. isFontMedium: true,
  21. textColor: context.appColors.textBlack,
  22. ),
  23. MyTextView(
  24. S.current.owners_desc1,
  25. fontSize: 15,
  26. marginTop: 22,
  27. isFontMedium: true,
  28. textColor: context.appColors.textBlack,
  29. ),
  30. MyTextView(
  31. S.current.owners_desc2,
  32. fontSize: 15,
  33. marginTop: 22,
  34. isFontMedium: true,
  35. textColor: context.appColors.textBlack,
  36. ),
  37. MyTextView(
  38. S.current.owners_desc3,
  39. fontSize: 15,
  40. marginTop: 22,
  41. isFontMedium: true,
  42. textColor: context.appColors.textBlack,
  43. ),
  44. MyTextView(
  45. S.current.owners_desc4,
  46. fontSize: 15,
  47. marginTop: 22,
  48. isFontMedium: true,
  49. textColor: context.appColors.textBlack,
  50. ),
  51. MyTextView(
  52. S.current.owners_desc5,
  53. fontSize: 15,
  54. marginTop: 22,
  55. isFontMedium: true,
  56. textColor: context.appColors.textBlack,
  57. ),
  58. ],
  59. ),
  60. );
  61. }
  62. }