Questions tagged [flutter]
3 questions
2
votes
3 answers
How do I model this scenario so that it adheres to OOP principles?
I have a Slide class with subclasses referring to the different types of slides (IntroSlide, SummarySlide, etc.):
abstract class Slide {
String slideType;
final String title;
final String voiceover;
final String? bgImage;
final…
Hello
- 47
2
votes
3 answers
Streams and clean architecture
I am pretty new to async programming and the whole stream stuff, since i have a web programming background with php, where async programming and streams isn't really a big topic most time.
I try to implement clean archtiecture in my next application…
Jim Panse
- 408
1
vote
1 answer
Clean architecture for file upload in a flutter app
I have started a flutter app and want to apply clean architecture to it. The first use case i have is the following:
A user provides file(s)via "open file" dialogue. The provided files should be analyzed in first step. After this, a summary with…
Jim Panse
- 408