123456789101112131415161718192021222324252627282930313233 |
- import 'package:flutter/material.dart';
- class CommonTitleWidget extends StatelessWidget {
- const CommonTitleWidget({super.key});
- @override
- Widget build(BuildContext context) {
- return SizedBox(
- width: MediaQuery.of(context).size.width,
- height: 150,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- const Image(
- image: AssetImage("images/logo.png"),
- width: 80,
- height: 80,
- ),
- Container(
- margin: const EdgeInsets.only(left: 10),
- child: const Text(
- "夫为因私出入境服务中心",
- style: TextStyle(
- color: Colors.black,
- fontSize: 24,
- fontWeight: FontWeight.bold),
- ),
- )
- ],
- ),
- );
- }
- }
|