RRoshaninmroshan.hashnode.dev·11h ago · 8 min readUnderstanding Dart : Part 11 - ListsSeries: Understanding Dart for Flutter Beginners So far, we've mostly worked with individual values. String name = "Roshan"; int age = 28; But what if you need to store multiple values in one variab00
RRoshaninmroshan.hashnode.dev·13h ago · 6 min readUnderstanding Dart : Part 10 - FunctionsSeries: Understanding Dart for Flutter Beginners As your program grows, putting all of your code inside main() quickly becomes difficult to manage. For example, imagine you need to calculate a total 00
RRoshaninmroshan.hashnode.dev·5d ago · 5 min readUnderstanding Dart : Part 9 - LoopsSeries: Understanding Dart for Flutter Beginners Imagine you need to print numbers from 1 to 10. One way is to write: print(1); print(2); print(3); print(4); print(5); print(6); print(7); print(8); p00
RRoshaninmroshan.hashnode.dev·Jul 30 · 5 min readUnderstanding Dart : Part 8 - Conditional StatementsSeries: Understanding Dart for Flutter Beginners Programs don't always execute the same code from top to bottom. Sometimes they need to make decisions based on certain conditions. For example: Shoul00
RRoshaninmroshan.hashnode.dev·Jul 30 · 6 min readUnderstanding Dart:Part 7 - Operators and ExpressionsSeries: Understanding Dart for Flutter Beginners In the previous article, we learned how Dart handles null values safely. Now it's time to start working with data. Whether you're calculating a total 00