import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:qinglong_app/base/http/api.dart'; import 'package:qinglong_app/base/http/http.dart'; import 'package:qinglong_app/base/ql_app_bar.dart'; import 'package:qinglong_app/module/others/login_log/login_log_bean.dart'; import 'package:qinglong_app/utils/extension.dart'; import 'package:qinglong_app/utils/utils.dart'; /// @author NewTab class TaskLogPage extends ConsumerStatefulWidget { const TaskLogPage({Key? key}) : super(key: key); @override _TaskLogPageState createState() => _TaskLogPageState(); } class _TaskLogPageState extends ConsumerState { @override void initState() { super.initState(); } @override Widget build(BuildContext context) { return Scaffold( appBar: QlAppBar( canBack: true, backCall: () { Navigator.of(context).pop(); }, title: "任务日志", ), ); } }