25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

49 lines
1.3 KiB

  1. import 'package:flutter/material.dart';
  2. import 'package:qadirneyriz/widgets/custom_appbar.dart';
  3. import 'package:flutter_gen/gen_l10n/app_localizations.dart';
  4. class AboutUsScreen extends StatelessWidget {
  5. const AboutUsScreen({super.key});
  6. @override
  7. Widget build(BuildContext context) {
  8. return CustomScrollView(
  9. slivers: [
  10. const CustomAppbar(),
  11. SliverToBoxAdapter(
  12. child: Image.asset('assets/images/logomizban.png'),
  13. ),
  14. SliverToBoxAdapter(
  15. child: Column(
  16. children: [
  17. Padding(
  18. padding: const EdgeInsets.symmetric(horizontal: 20),
  19. child: Text(
  20. textAlign: TextAlign.justify,
  21. AppLocalizations.of(context)!.textaboutus,
  22. ),
  23. ),
  24. SizedBox(
  25. height: 10,
  26. ),
  27. Column(
  28. children: [
  29. Image.asset(
  30. 'assets/images/logoaboutus.png',
  31. width: 100,
  32. height: 100,
  33. ),
  34. Text(
  35. 'نسخه 1.0.0',
  36. style: TextStyle(fontSize: 12),
  37. ),
  38. ],
  39. )
  40. ],
  41. ),
  42. )
  43. ],
  44. );
  45. }
  46. }