| 12345678910111213141516171819 |
- import 'package:flutter/material.dart';
- /// Description: background for login and register page
- /// Time : 08/24/2023 Thursday
- /// Author : liuyuqi.gov@msn.cn
- class Background extends StatelessWidget {
- Widget child;
- String topImg, bottomImg;
- Background(
- {super.key, required this.child, this.topImg = "", this.bottomImg = ""});
- @override
- Widget build(BuildContext context) {
- return Stack(
- alignment: Alignment.center,
- children: [],
- );
- }
- }
|