Before:
void main() {
runApp(AnaEkran(),
);
}
After:
void main() {
runApp(MaterialApp(
home: AnaEkran(),
),
);
}
https://stackoverflow.com/questions/44004451/navigator-operation-requested-with-a-context-that-does-not-include-a-navigator
Before:
void main() {
runApp(AnaEkran(),
);
}
After:
void main() {
runApp(MaterialApp(
home: AnaEkran(),
),
);
}
https://stackoverflow.com/questions/44004451/navigator-operation-requested-with-a-context-that-does-not-include-a-navigator
double screenWidth = MediaQuery.of(context).size.width; double screenHeight = MediaQuery.of(context).size.height; Container( height: sc...
No comments:
Post a Comment