| 1234567891011121314151617181920212223242526 |
- import 'package:bbyyy/my_tools/my_views.dart';
- import 'package:flutter/material.dart';
- class PromotionDownloadPage extends StatefulWidget {
- const PromotionDownloadPage({Key key}) : super(key: key);
- @override
- _PromotionDownloadPageState createState() => _PromotionDownloadPageState();
- }
- class _PromotionDownloadPageState extends State<PromotionDownloadPage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: Column(
- children: [
- MyViews().myAppBar('推广下载', context, []),
- Container(
- child: Image.asset('images/推广二维码.jpg'),
- margin: EdgeInsets.symmetric(horizontal: 30, vertical: 30),
- )
- ],
- ),
- );
- }
- }
|