contact_us.dart 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import 'package:flutter/material.dart';
  2. class ContactUSWidget extends StatelessWidget {
  3. const ContactUSWidget({super.key});
  4. @override
  5. Widget build(BuildContext context) {
  6. return SingleChildScrollView(
  7. child: Column(
  8. children: [
  9. Container(
  10. margin: const EdgeInsets.only(top: 30),
  11. child: const Text(
  12. "联系我们",
  13. style: TextStyle(fontSize: 20, color: Colors.black),
  14. ),
  15. ),
  16. Container(
  17. margin: const EdgeInsets.only(left: 60, right: 60, top: 30),
  18. child: const Text(
  19. "电话咨询:188-1741-1299",
  20. style: TextStyle(fontSize: 16, color: Colors.black),
  21. ),
  22. ),
  23. Container(
  24. margin: const EdgeInsets.only(left: 60, right: 60, top: 30),
  25. child: const Text("微信咨询",
  26. style: TextStyle(fontSize: 16, color: Colors.black)),
  27. ),
  28. const Image(
  29. image: AssetImage("images/wechat.jpg"),
  30. width: 200,
  31. height: 200,
  32. ),
  33. ],
  34. ),
  35. );
  36. }
  37. }