news_getx/lib/modules/not_found/not_found_page.dart

14 lines
300 B
Dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'not_found_controller.dart';
class NotFoundPage extends GetView<NotFoundController> {
const NotFoundPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}