12345678910111213141516171819202122232425262728293031 |
- import 'package:flutter/material.dart';
- class CommonFooterWidget extends StatelessWidget {
- const CommonFooterWidget({super.key});
- @override
- Widget build(BuildContext context) {
- return Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- const Text("夫为贸易(上海)有限责任公司"),
- Padding(
- padding: const EdgeInsets.all(10),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: const [
- Text("联系电话:188-1741-1299",
- style: TextStyle(fontSize: 14, color: Colors.black)),
- Padding(
- padding: EdgeInsets.only(left: 10, right: 10),
- child: Text("地址:浙江省杭州市拱墅区",
- style: TextStyle(fontSize: 14, color: Colors.black)),
- ),
- Text("备案号", style: TextStyle(fontSize: 14, color: Colors.black))
- ],
- ),
- )
- ],
- );
- }
- }
|