Why does flutter MaterialApp Widget gives the error “not enough required arguments”
The MaterialApp flutter widget is giving the error "1 required arguments expected, but 0 found" for the first flutter project available with the flutter sdk. I'm running it on VScode. And here is the code. Thanks in Advance.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( // This line is giving Error at'('
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
android dart flutter
|
show 1 more comment
The MaterialApp flutter widget is giving the error "1 required arguments expected, but 0 found" for the first flutter project available with the flutter sdk. I'm running it on VScode. And here is the code. Thanks in Advance.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( // This line is giving Error at'('
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
android dart flutter
Seems odd, have you tried running it from scratch rather than a hot restart if that's an option. Are there any other clues on the lines before/after the error ?
– Ian
Nov 25 '18 at 12:19
yeah. i have tried everything including running it from scratch,reopening the project and reopening the editor.
– OV3RKILL
Nov 25 '18 at 12:22
Have you potentially defined another class with the nameMaterialApp
?
– Rémi Rousselet
Nov 25 '18 at 12:58
Nope, there is no other Widget named after that. Moreover, its the flutter code which you get after starting a new flutter project made by the flutter team for beginners. And I have also tried re-installing the flutter plugins, as well as VScode itself. I have also tried it on Android Studio.
– OV3RKILL
Nov 25 '18 at 13:16
Which flutter version you are using?
– Aawaz Gyawali
Nov 25 '18 at 14:29
|
show 1 more comment
The MaterialApp flutter widget is giving the error "1 required arguments expected, but 0 found" for the first flutter project available with the flutter sdk. I'm running it on VScode. And here is the code. Thanks in Advance.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( // This line is giving Error at'('
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
android dart flutter
The MaterialApp flutter widget is giving the error "1 required arguments expected, but 0 found" for the first flutter project available with the flutter sdk. I'm running it on VScode. And here is the code. Thanks in Advance.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp( // This line is giving Error at'('
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
android dart flutter
android dart flutter
edited Nov 25 '18 at 11:13
Günter Zöchbauer
331k691000933
331k691000933
asked Nov 25 '18 at 11:05
OV3RKILLOV3RKILL
12
12
Seems odd, have you tried running it from scratch rather than a hot restart if that's an option. Are there any other clues on the lines before/after the error ?
– Ian
Nov 25 '18 at 12:19
yeah. i have tried everything including running it from scratch,reopening the project and reopening the editor.
– OV3RKILL
Nov 25 '18 at 12:22
Have you potentially defined another class with the nameMaterialApp
?
– Rémi Rousselet
Nov 25 '18 at 12:58
Nope, there is no other Widget named after that. Moreover, its the flutter code which you get after starting a new flutter project made by the flutter team for beginners. And I have also tried re-installing the flutter plugins, as well as VScode itself. I have also tried it on Android Studio.
– OV3RKILL
Nov 25 '18 at 13:16
Which flutter version you are using?
– Aawaz Gyawali
Nov 25 '18 at 14:29
|
show 1 more comment
Seems odd, have you tried running it from scratch rather than a hot restart if that's an option. Are there any other clues on the lines before/after the error ?
– Ian
Nov 25 '18 at 12:19
yeah. i have tried everything including running it from scratch,reopening the project and reopening the editor.
– OV3RKILL
Nov 25 '18 at 12:22
Have you potentially defined another class with the nameMaterialApp
?
– Rémi Rousselet
Nov 25 '18 at 12:58
Nope, there is no other Widget named after that. Moreover, its the flutter code which you get after starting a new flutter project made by the flutter team for beginners. And I have also tried re-installing the flutter plugins, as well as VScode itself. I have also tried it on Android Studio.
– OV3RKILL
Nov 25 '18 at 13:16
Which flutter version you are using?
– Aawaz Gyawali
Nov 25 '18 at 14:29
Seems odd, have you tried running it from scratch rather than a hot restart if that's an option. Are there any other clues on the lines before/after the error ?
– Ian
Nov 25 '18 at 12:19
Seems odd, have you tried running it from scratch rather than a hot restart if that's an option. Are there any other clues on the lines before/after the error ?
– Ian
Nov 25 '18 at 12:19
yeah. i have tried everything including running it from scratch,reopening the project and reopening the editor.
– OV3RKILL
Nov 25 '18 at 12:22
yeah. i have tried everything including running it from scratch,reopening the project and reopening the editor.
– OV3RKILL
Nov 25 '18 at 12:22
Have you potentially defined another class with the name
MaterialApp
?– Rémi Rousselet
Nov 25 '18 at 12:58
Have you potentially defined another class with the name
MaterialApp
?– Rémi Rousselet
Nov 25 '18 at 12:58
Nope, there is no other Widget named after that. Moreover, its the flutter code which you get after starting a new flutter project made by the flutter team for beginners. And I have also tried re-installing the flutter plugins, as well as VScode itself. I have also tried it on Android Studio.
– OV3RKILL
Nov 25 '18 at 13:16
Nope, there is no other Widget named after that. Moreover, its the flutter code which you get after starting a new flutter project made by the flutter team for beginners. And I have also tried re-installing the flutter plugins, as well as VScode itself. I have also tried it on Android Studio.
– OV3RKILL
Nov 25 '18 at 13:16
Which flutter version you are using?
– Aawaz Gyawali
Nov 25 '18 at 14:29
Which flutter version you are using?
– Aawaz Gyawali
Nov 25 '18 at 14:29
|
show 1 more comment
1 Answer
1
active
oldest
votes
I had the exact same issue using VSCode and found this which fixed the problem:
Run the following commands in the Flutter install directory:
- git clean -xfd
- git stash save --keep-index
- git stash drop
- git pull
- flutter doctor
https://github.com/flutter/flutter/wiki/Workarounds-for-common-issues#flutter-installation-corrupted
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53466837%2fwhy-does-flutter-materialapp-widget-gives-the-error-not-enough-required-argumen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I had the exact same issue using VSCode and found this which fixed the problem:
Run the following commands in the Flutter install directory:
- git clean -xfd
- git stash save --keep-index
- git stash drop
- git pull
- flutter doctor
https://github.com/flutter/flutter/wiki/Workarounds-for-common-issues#flutter-installation-corrupted
add a comment |
I had the exact same issue using VSCode and found this which fixed the problem:
Run the following commands in the Flutter install directory:
- git clean -xfd
- git stash save --keep-index
- git stash drop
- git pull
- flutter doctor
https://github.com/flutter/flutter/wiki/Workarounds-for-common-issues#flutter-installation-corrupted
add a comment |
I had the exact same issue using VSCode and found this which fixed the problem:
Run the following commands in the Flutter install directory:
- git clean -xfd
- git stash save --keep-index
- git stash drop
- git pull
- flutter doctor
https://github.com/flutter/flutter/wiki/Workarounds-for-common-issues#flutter-installation-corrupted
I had the exact same issue using VSCode and found this which fixed the problem:
Run the following commands in the Flutter install directory:
- git clean -xfd
- git stash save --keep-index
- git stash drop
- git pull
- flutter doctor
https://github.com/flutter/flutter/wiki/Workarounds-for-common-issues#flutter-installation-corrupted
answered Dec 23 '18 at 15:09
Jeff P.Jeff P.
112
112
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53466837%2fwhy-does-flutter-materialapp-widget-gives-the-error-not-enough-required-argumen%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Seems odd, have you tried running it from scratch rather than a hot restart if that's an option. Are there any other clues on the lines before/after the error ?
– Ian
Nov 25 '18 at 12:19
yeah. i have tried everything including running it from scratch,reopening the project and reopening the editor.
– OV3RKILL
Nov 25 '18 at 12:22
Have you potentially defined another class with the name
MaterialApp
?– Rémi Rousselet
Nov 25 '18 at 12:58
Nope, there is no other Widget named after that. Moreover, its the flutter code which you get after starting a new flutter project made by the flutter team for beginners. And I have also tried re-installing the flutter plugins, as well as VScode itself. I have also tried it on Android Studio.
– OV3RKILL
Nov 25 '18 at 13:16
Which flutter version you are using?
– Aawaz Gyawali
Nov 25 '18 at 14:29