skip to Main Content

Using Vs studio code to perform flutter, Select chrome as web device, when i debugged, only displayed 'white screen'. There weren't error code

https://github.com/gojunho4321/flutter_toonflix/commit/ee83e68fc021e83a9f6da037e7ba6ef2e6415ffe this is code what I run in vs studio code. I selected device as 'Chrome(web)' but when I ran the code, chrome displayed address as http://localhost:64661/#/, but there are was only 'white screen' ,no other factors(title, loading circle, etc...)…

VIEW QUESTION

Flutter – How to change parent of widgets without rebuilding their states

In flutter, I have widgets like: class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) => Scaffold( body: OrientationBuilder( builder: (context, orientation) { const List<ColorfulBox> children = [ColorfulBox(), ColorfulBox()]; return orientation == Orientation.portrait ? const Row(children: children) : const Column(children:…

VIEW QUESTION

Flutter records return type issue

This is the error I am currently dealing with: A value of type '(Null, List<BoatModel>)' can't be returned from the method 'getBoatsFromOwnership' because it has a return type of 'Future<(Failure?, List<Boat>?)>'. related to this code: @override Future<(Failure?, List<Boat>?)> getBoatsFromOwnership(User user)…

VIEW QUESTION
Back To Top
Search