We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
`import 'package:flutter/material.dart'; import 'package:get/get.dart';
import 'news_detail_controller.dart';
class NewsDetailPage extends StatelessWidget { const NewsDetailPage({Key? key}) : super(key: key);
@OverRide Widget build(BuildContext context) { final NewsDetailController controller = Get.put(NewsDetailController());
return Container();
} } `
改成:
class NewsDetailPage extends StatelessWidget { const NewsDetailPage({super.key}); //修改
//增加Scaffold return Scaffold( appBar: AppBar(title: const Text('NewsDetailPage')), body: const Center(child: Text("NewsDetailPage ")), );
} }
`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'news_detail_controller.dart';
class NewsDetailPage extends StatelessWidget {
const NewsDetailPage({Key? key}) : super(key: key);
@OverRide
Widget build(BuildContext context) {
final NewsDetailController controller = Get.put(NewsDetailController());
}
}
`
改成:
`import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'news_detail_controller.dart';
class NewsDetailPage extends StatelessWidget {
const NewsDetailPage({super.key}); //修改
@OverRide
Widget build(BuildContext context) {
final NewsDetailController controller = Get.put(NewsDetailController());
}
}
`
The text was updated successfully, but these errors were encountered: