123456789101112131415161718192021222324252627282930313233343536373839 |
- import 'package:flutter/material.dart';
- class ContactUSWidget extends StatelessWidget {
- const ContactUSWidget({super.key});
- @override
- Widget build(BuildContext context) {
- return SingleChildScrollView(
- child: Column(
- children: [
- Container(
- margin: const EdgeInsets.only(top: 30),
- child: const Text(
- "联系我们",
- style: TextStyle(fontSize: 20, color: Colors.black),
- ),
- ),
- Container(
- margin: const EdgeInsets.only(left: 60, right: 60, top: 30),
- child: const Text(
- "电话咨询:188-1741-1299",
- style: TextStyle(fontSize: 16, color: Colors.black),
- ),
- ),
- Container(
- margin: const EdgeInsets.only(left: 60, right: 60, top: 30),
- child: const Text("微信咨询",
- style: TextStyle(fontSize: 16, color: Colors.black)),
- ),
- const Image(
- image: AssetImage("images/wechat.jpg"),
- width: 200,
- height: 200,
- ),
- ],
- ),
- );
- }
- }
|