AuthLogsRouter basecode, windows base code

This commit is contained in:
DASHU
2024-10-08 00:25:23 +08:00
parent c121370c3b
commit f18e044ab7
10 changed files with 141 additions and 27 deletions

View File

@@ -0,0 +1,33 @@
import 'package:flutter/material.dart';
import '../../component/appbar_back_btn_component.dart';
import '../../component/deletable_list_mixin.dart';
class AuthLogsRouter extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return _AuthLogsRouter();
}
}
class _AuthLogsRouter extends State<AuthLogsRouter> with DeletableListMixin {
@override
Widget build(BuildContext context) {
var themeData = Theme.of(context);
return Scaffold(
appBar: AppBar(
leading: AppbarBackBtnComponent(),
title: Text(
"Auth Logs",
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: themeData.textTheme.bodyLarge!.fontSize,
),
),
actions: genAppBarActions(context),
),
body: Container(),
);
}
}