common_footer.dart 1023 B

12345678910111213141516171819202122232425262728293031
  1. import 'package:flutter/material.dart';
  2. class CommonFooterWidget extends StatelessWidget {
  3. const CommonFooterWidget({super.key});
  4. @override
  5. Widget build(BuildContext context) {
  6. return Column(
  7. mainAxisAlignment: MainAxisAlignment.center,
  8. children: [
  9. const Text("夫为贸易(上海)有限责任公司"),
  10. Padding(
  11. padding: const EdgeInsets.all(10),
  12. child: Row(
  13. mainAxisAlignment: MainAxisAlignment.center,
  14. children: const [
  15. Text("联系电话:188-1741-1299",
  16. style: TextStyle(fontSize: 14, color: Colors.black)),
  17. Padding(
  18. padding: EdgeInsets.only(left: 10, right: 10),
  19. child: Text("地址:浙江省杭州市拱墅区",
  20. style: TextStyle(fontSize: 14, color: Colors.black)),
  21. ),
  22. Text("备案号", style: TextStyle(fontSize: 14, color: Colors.black))
  23. ],
  24. ),
  25. )
  26. ],
  27. );
  28. }
  29. }