Skip to content

每次多要增加 Scaffold很麻烦, 能否直接加默认加入Scaffold #58

New issue

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

Open
fangjunai opened this issue May 22, 2025 · 0 comments

Comments

@fangjunai
Copy link

`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();

}
}
`

改成:

`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());

//增加Scaffold
return Scaffold(
  appBar: AppBar(title: const Text('NewsDetailPage')),
  body: const Center(child: Text("NewsDetailPage ")),
);

}
}

`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant