background.dart 489 B

12345678910111213141516171819
  1. import 'package:flutter/material.dart';
  2. /// Description: background for login and register page
  3. /// Time : 08/24/2023 Thursday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class Background extends StatelessWidget {
  6. Widget child;
  7. String topImg, bottomImg;
  8. Background(
  9. {super.key, required this.child, this.topImg = "", this.bottomImg = ""});
  10. @override
  11. Widget build(BuildContext context) {
  12. return Stack(
  13. alignment: Alignment.center,
  14. children: [],
  15. );
  16. }
  17. }