2022-02-21 14:51:53 +08:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
class News extends StatelessWidget {
|
2023-03-20 15:52:49 +08:00
|
|
|
const News({Key? key}) : super(key: key);
|
|
|
|
|
|
2022-02-21 14:51:53 +08:00
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2023-03-29 14:48:42 +08:00
|
|
|
return Container();
|
2022-02-21 14:51:53 +08:00
|
|
|
}
|
|
|
|
|
}
|