refactor(scaffold): 更新布局方式

This commit is contained in:
李东云
2023-03-29 14:48:42 +08:00
parent a201fdb91c
commit 6738f0bfde
7 changed files with 79 additions and 153 deletions

View File

@@ -1,17 +1,10 @@
import 'package:flutter/material.dart';
import 'layout/layout_scaffold.dart';
class News extends StatelessWidget {
const News({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return LayoutScaffold(
appBar: AppBar(
title: const Text('道听'),
),
body: null,
);
return Container();
}
}