18 lines
339 B
Dart
18 lines
339 B
Dart
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,
|
|
);
|
|
}
|
|
}
|