setting_scene.dart 819 B

12345678910111213141516171819202122232425262728293031323334
  1. import 'package:flutter/material.dart';
  2. import 'package:shuqi/public.dart';
  3. class SettingScene extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. List<Widget> children = [];
  7. if (UserManager.instance.isLogin) {
  8. children.add(GestureDetector(
  9. onTap: () {
  10. Navigator.pop(context);
  11. UserManager.instance.logout();
  12. },
  13. child: Container(
  14. height: 50,
  15. color: Colors.white,
  16. child: Center(
  17. child: Text('退出登录', style: TextStyle(fontSize: 16, color: SQColor.red)),
  18. ),
  19. ),
  20. ));
  21. }
  22. return Scaffold(
  23. appBar: AppBar(title: Text('设置'), elevation: 0.5),
  24. body: Container(
  25. child: ListView(
  26. children: children,
  27. ),
  28. ),
  29. );
  30. }
  31. }