diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/100-core-libraries.md b/src/data/roadmaps/flutter/content/110-advanced-dart/100-core-libraries.md
index 6277c847e..c54a95181 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/100-core-libraries.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/100-core-libraries.md
@@ -4,5 +4,5 @@ Dart has a rich set of core libraries that provide essentials for many everyday
 
 Visit the following resources to learn more:
 
-- [@article@Core libraries](https://dart.dev/guides/libraries)
-- [@article@Libraries](https://api.flutter.dev/)
+- [@official@Core Libraries](https://dart.dev/guides/libraries)
+- [@official@Libraries - Flutter API](https://api.flutter.dev/)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/101-lists.md b/src/data/roadmaps/flutter/content/110-advanced-dart/101-lists.md
index 5960cd7bc..edc55ffd7 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/101-lists.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/101-lists.md
@@ -1,15 +1,7 @@
 # Lists
 
-Some common ways to display lists in Dart Flutter include:
-
-- ListView widget
-- ListTile widget
-- SingleChildScrollView with Column
-- GridView widget
-- CustomScrollView with Slivers
-
-These widgets allow you to display items in a scrolling list, a grid, or a combination of both. You can customize the appearance of each item using widgets, layouts, and styling.
+Dart Flutter offers various widgets for displaying lists, including `ListView`, `ListTile`, `SingleChildScrollView` with `Column`, `GridView`, and `CustomScrollView` with `Slivers`, enabling scrolling lists, grids, and customized item appearances through widgets, layouts, and styling.
 
 Learn more from the following:
 
-- [@article@List Class](https://api.flutter.dev/flutter/dart-core/List-class.html)
+- [@official@List Class](https://api.flutter.dev/flutter/dart-core/List-class.html)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/102-collections.md b/src/data/roadmaps/flutter/content/110-advanced-dart/102-collections.md
index 3eed4cd38..531ae3472 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/102-collections.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/102-collections.md
@@ -1,16 +1,8 @@
 # Collections
 
-In Dart, collections are used to store and manipulate groups of objects. There are several types of collections available, including:
-
-1. List (ordered and indexable)
-2. Set (unordered and unique elements)
-3. Map (key-value pairs)
-4. Queue (ordered and first-in-first-out)
-5. Stack (ordered and last-in-first-out)
-
-These collections are built-in data structures that can be used to store and manipulate data efficiently. They can be used in a variety of scenarios, such as storing user data, managing state, and organizing algorithms.
+Dart provides built-in collections like Lists (ordered, indexed), Sets (unordered, unique), Maps (key-value pairs), Queues (FIFO), and Stacks (LIFO) for efficient data storage and manipulation, useful in various scenarios like data storage, state management, and algorithm implementation.
 
 Learn more from the following:
 
-- [@article@Generic collections in Flutter](https://dart.dev/guides/language/language-tour#generic-collections-and-the-types-they-contain)
-- [@article@Iterable collections](https://dart.dev/codelabs/iterables)
+- [@official@Generic Collections in Flutter](https://dart.dev/guides/language/language-tour#generic-collections-and-the-types-they-contain)
+- [@official@Iterable Collections](https://dart.dev/codelabs/iterables)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/103-lambdas.md b/src/data/roadmaps/flutter/content/110-advanced-dart/103-lambdas.md
index 0f00f0b6d..24311c608 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/103-lambdas.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/103-lambdas.md
@@ -2,16 +2,9 @@
 
 Lambdas, also known as anonymous functions, are a fundamental concept in Dart and Flutter. They are a way to create short, inline functions that can be passed as arguments to other functions or assigned to variables.
 
-Here are some common use cases for lambdas in Dart Flutter:
-
-- Event Handlers: You can use lambdas as event handlers for widgets, such as buttons.
-- Callbacks: You can use lambdas as callbacks to pass into functions that execute later.
-- Streams: You can use lambdas to handle events in a Stream.
-- Filtering: You can use lambdas to filter data in a collection using functions like where and `firstWhere`.
-
 Lambdas are defined using the `=>` operator and can take zero or more arguments. They can also contain expressions, statements, and return values.
 
 Learn more from the following links:
 
-- [@article@Lambda functions in Dart](https://medium.com/jay-tillu/lambda-functions-in-dart-7db8b759f07a)
+- [@article@Lambda Functions in Dart](https://medium.com/jay-tillu/lambda-functions-in-dart-7db8b759f07a)
 - [@video@Anonymous Function in Dart | Lambda Function](https://www.youtube.com/watch?v=XTKKQdTAR0U)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/104-functional-programming.md b/src/data/roadmaps/flutter/content/110-advanced-dart/104-functional-programming.md
index 906aed6c7..18f45b11a 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/104-functional-programming.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/104-functional-programming.md
@@ -1,15 +1,10 @@
 # Functional Programming
 
-Functional programming is a programming paradigm that emphasizes immutability, statelessness, and the use of functions to transform data. Dart, being a modern programming language, supports functional programming concepts such as:
-
-- Higher-Order Functions: Dart supports functions that take other functions as arguments and/or return functions as output.
-- Immutable Data: Dart provides support for immutable data structures and encourages the use of these data structures in functional programming.
-- Lambdas/Closures: Dart has support for anonymous functions, also known as lambdas or closures, which can be used to create simple and concise functions.
-- Pure Functions: Dart encourages the use of pure functions, which are functions that have no side effects and always return the same output given the same inputs.
+Dart supports functional programming through higher-order functions, immutable data structures, lambdas/closures, and pure functions, enabling developers to write code that emphasizes immutability, statelessness, and data transformation via functions.
 
 Learn more from the following links:
 
+- [@official@Functional Programming - Flutter](https://docs.flutter.dev/resources/faq)
 - [@article@Brief Overview of Functional Programming](https://buildflutter.com/functional-programming-with-flutter/)
 - [@article@Functional Programming in Dart & Flutter](https://yogi-6.medium.com/list/functional-programming-in-dart-flutter-2f3ac9d7fa39)
-- [@article@Functional programming - Flutter](https://docs.flutter.dev/resources/faq)
 - [@feed@Explore top posts about Functional Programming](https://app.daily.dev/tags/functional-programming?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/105-isolates.md b/src/data/roadmaps/flutter/content/110-advanced-dart/105-isolates.md
index 3d6659525..490f5fe00 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/105-isolates.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/105-isolates.md
@@ -1,15 +1,8 @@
 # Isolates
 
-Isolates in Flutter are separate execution contexts that run in parallel with each other. They are used to improve performance and concurrency in Flutter applications. Key benefits of using Isolates in Flutter include:
-
-- Improved Performance: Isolates allow you to run intensive computations or blocking operations in the background, without freezing the user interface.
-- Concurrent Execution: Isolates provide a way to run multiple tasks concurrently, allowing you to improve the overall performance of your app.
-- Isolation: Each Isolate runs in its own memory space and is isolated from other Isolates. This makes it easier to write reliable and secure code.
-- Communication: Flutter provides a mechanism for communicating between Isolates, allowing them to share data and coordinate their work.
-
-Isolates are created using the `Isolate` class and can be used for a variety of tasks, such as network operations, long-running computations, or background tasks. When using Isolates, it's important to be mindful of the cost of context-switching and communication between Isolates.
+Flutter Isolates are parallel execution contexts that enhance performance and concurrency by running intensive tasks in the background, preventing UI freezes. They provide isolated memory spaces for reliable code, enable concurrent execution, and facilitate inter-isolate communication for data sharing and coordination, though developers must consider context-switching and communication overhead.
 
 Learn more from the following links:
 
-- [@article@How isolates work](https://dart.dev/guides/language/concurrency#how-isolates-work)
+- [@official@How Isolates Work](https://dart.dev/guides/language/concurrency#how-isolates-work)
 - [@article@Dart - Isolates and event loops](https://medium.com/dartlang/dart-asynchronous-programming-isolates-and-event-loops-bffc3e296a6a)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/106-async-await.md b/src/data/roadmaps/flutter/content/110-advanced-dart/106-async-await.md
index 854d80c18..3edb3b9d8 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/106-async-await.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/106-async-await.md
@@ -1,13 +1,8 @@
 # Async Await
 
-It is a programming pattern in Flutter that makes it easier to write asynchronous code. It allows you to write asynchronous code that looks and behaves like synchronous code.
-
-- **async**: The async keyword is used to mark a function as asynchronous, which means that the function can run asynchronously and not block the main thread.
-- **await**: The await keyword is used inside an async function to wait for the result of an asynchronous operation before continuing the execution of the function.
-
-With `async`/`await`, you can write asynchronous code that is easy to read, write, and maintain.
+Flutter's `async`/`await` pattern simplifies asynchronous programming by enabling code that appears synchronous. The `async` keyword designates a function as asynchronous, allowing non-blocking execution, while `await` pauses execution until an asynchronous operation completes, resulting in cleaner and more maintainable asynchronous code.
 
 Learn more from the following resources:
 
-- [@article@Asynchronous programming: async, await](https://dart.dev/codelabs/async-await)
-- [@article@Async widgets](https://docs.flutter.dev/development/ui/widgets/async)
+- [@official@Asynchronous Programming: async, await](https://dart.dev/codelabs/async-await)
+- [@official@Async widgets](https://docs.flutter.dev/development/ui/widgets/async)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/107-streams.md b/src/data/roadmaps/flutter/content/110-advanced-dart/107-streams.md
index c20fea7fa..db03a3567 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/107-streams.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/107-streams.md
@@ -4,6 +4,6 @@ Streams in Flutter are a way to receive data over time as it becomes available.
 
 Learn more from the following resources:
 
-- [@article@Creating streams in Dart](https://dart.dev/articles/libraries/creating-streams)
+- [@official@Creating streams in Dart](https://dart.dev/articles/libraries/creating-streams)
 - [@article@Understanding Streams in Dart and Flutter](https://medium.com/stackademic/understanding-streams-in-dart-and-flutter-0d153b559760)
 - [@article@How to Use and Create Streams from Scratch in Dart and Flutter – a Beginner's Guide](https://www.freecodecamp.org/news/how-to-use-and-create-streams-in-dart-and-flutter/)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/108-futures.md b/src/data/roadmaps/flutter/content/110-advanced-dart/108-futures.md
index 98de45c6b..d3927c003 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/108-futures.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/108-futures.md
@@ -10,4 +10,4 @@ Futures in Flutter are a way of representing a potential value that will be avai
 
 Learn more from the following resources:
 
-- [@article@Futures and Error handling](https://dart.dev/guides/libraries/futures-error-handling)
+- [@official@Futures and Error handling](https://dart.dev/guides/libraries/futures-error-handling)
diff --git a/src/data/roadmaps/flutter/content/110-advanced-dart/index.md b/src/data/roadmaps/flutter/content/110-advanced-dart/index.md
index d1c6a1596..08ed4f5f7 100644
--- a/src/data/roadmaps/flutter/content/110-advanced-dart/index.md
+++ b/src/data/roadmaps/flutter/content/110-advanced-dart/index.md
@@ -1,21 +1,9 @@
 # Advanced Dart
 
-Here are some advanced concepts in Dart that are commonly used in Flutter development:
-
-- Generics: allows creating reusable code by abstracting over types
-- Async/Await: simplifies asynchronous programming by allowing to wait for a Future to complete in a clean, readable way.
-- Mixins: lets classes inherit behaviors from multiple mixin classes
-- Abstract Classes: provide a base class that can be extended to create multiple concrete implementations.
-- Streams: provide a way to receive a continuous sequence of events, like data from a server or user events.
-- Isolates: allow running Dart code in separate threads with communication through message passing.
-- Futures: represent a value that will be available at some point in the future.
-- Null-aware operators (??, ?.): provide a concise way to handle null values.
-- Collection literals: provide concise syntax for creating collections.
-- Extension Methods: allow adding methods to existing classes, even if you don't have access to their source code.
-
-By mastering these concepts, you will be able to write more efficient and maintainable Dart code in your Flutter projects.
+Advanced Dart concepts crucial for Flutter development include generics for reusable code, `async`/`await` for clean asynchronous operations, mixins for multiple inheritance, abstract classes for base implementations, streams for continuous event handling, isolates for parallel processing, futures for future value representation, null-aware operators for concise null handling, collection literals for efficient collection creation, and extension methods for adding functionality to existing classes, all contributing to more efficient and maintainable code.
 
 Learn more from the following resources:
 
 - [@official@Tutorials - Dart](https://dart.dev/tutorials)
+- [@article@Advanced Dart](https://techdynasty.medium.com/advanced-dart-in-flutter-elevating-your-development-skills-1c8ec309266f)
 - [@feed@Explore top posts about Dart](https://app.daily.dev/tags/dart?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/111-state-management/100-provider.md b/src/data/roadmaps/flutter/content/111-state-management/100-provider.md
index 3e969a9a0..1e6fee141 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/100-provider.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/100-provider.md
@@ -4,5 +4,5 @@ Provider is a wrapper around InheritedWidget (base class for widgets that effici
 
 Visit the following resources to learn more:
 
-- [@article@provider](https://pub.dev/packages/provider)
-- [@article@Simple app state management](https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple)
+- [@official@Provider](https://pub.dev/packages/provider)
+- [@official@Simple App State Management](https://docs.flutter.dev/development/data-and-backend/state-mgmt/simple)
diff --git a/src/data/roadmaps/flutter/content/111-state-management/101-bloc.md b/src/data/roadmaps/flutter/content/111-state-management/101-bloc.md
index 50b7842b7..6ad12c081 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/101-bloc.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/101-bloc.md
@@ -4,8 +4,8 @@ Bloc (Business Logic Component) is a state management pattern used in Flutter to
 
 Learn more from the following links:
 
+- [@official@BLoC in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#bloc--rx)
 - [@article@Get started with flutter_bloc](https://pub.dev/packages/flutter_bloc)
-- [@article@BLoC in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#bloc--rx)
 - [@article@Flutter bloc for beginners](https://medium.com/flutter-community/flutter-bloc-for-beginners-839e22adb9f5)
 - [@video@Flutter Bloc - Tutorial](https://www.youtube.com/watch?v=Ep6R7U9wa0U)
 - [@video@BLoC Pattern: A Comprehensive Tutorial](https://www.youtube.com/watch?v=Qe47b8r5epc&ab_channel=MaxonFlutter)
\ No newline at end of file
diff --git a/src/data/roadmaps/flutter/content/111-state-management/102-riverpod.md b/src/data/roadmaps/flutter/content/111-state-management/102-riverpod.md
index fa91b6f3e..742f525ff 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/102-riverpod.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/102-riverpod.md
@@ -6,8 +6,8 @@ One of the key features of Riverpod is its ability to manage and scope state in
 
 Learn more from the following links:
 
-- [@article@riverpod](https://pub.dev/packages/riverpod)
-- [@article@Riverpod in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#riverpod)
-- [@official@Documentation](https://riverpod.dev/)
+- [@official@riverpod](https://pub.dev/packages/riverpod)
+- [@official@Riverpod in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#riverpod)
+- [@official@riverpod Documentation](https://riverpod.dev/)
 - [@article@Documentation v2 is in progress](https://docs-v2.riverpod.dev/)
 - [@article@Flutter Riverpod 2.0: The Ultimate Guide](https://codewithandrea.com/articles/flutter-state-management-riverpod/)
\ No newline at end of file
diff --git a/src/data/roadmaps/flutter/content/111-state-management/103-velocity-x.md b/src/data/roadmaps/flutter/content/111-state-management/103-velocity-x.md
index f7858e6a1..4d5d20caa 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/103-velocity-x.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/103-velocity-x.md
@@ -4,5 +4,5 @@ VelocityX is a Flutter UI toolkit for building high-performance, visually stunni
 
 Learn more from the following links:
 
-- [@official@Get started with VelocityX](https://velocityx.dev/)
+- [@official@Get Started with VelocityX](https://velocityx.dev/)
 - [@article@Intro to velocity_x](https://pub.dev/packages/velocity_x)
diff --git a/src/data/roadmaps/flutter/content/111-state-management/104-get-x.md b/src/data/roadmaps/flutter/content/111-state-management/104-get-x.md
index 4cc3d203f..670f34dcb 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/104-get-x.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/104-get-x.md
@@ -4,5 +4,5 @@ GetX is a lightweight and powerful solution for state management and navigation
 
 Learn more from the following links:
 
-- [@article@GetX in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#getx)
+- [@official@GetX in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#getx)
 - [@video@Complete GetX State Management | Flutter](https://www.youtube.com/watch?v=CNpXbeI_slw)
diff --git a/src/data/roadmaps/flutter/content/111-state-management/105-redux.md b/src/data/roadmaps/flutter/content/111-state-management/105-redux.md
index 4743fff7f..136a03496 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/105-redux.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/105-redux.md
@@ -4,7 +4,7 @@ Redux is a state management library for Flutter, commonly used with the Flutter
 
 Visit the following resources to learn more:
 
-- [@article@flutter\_redux](https://pub.dev/packages/flutter_redux)
-- [@article@Redux - Tutorial](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#redux)
+- [@official@flutter\_redux](https://pub.dev/packages/flutter_redux)
+- [@official@Redux - Tutorial](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#redux)
 - [@article@Building a Flutter app with Redux](https://hillel.dev/2018/06/01/building-a-large-flutter-app-with-redux/)
 - [@feed@Explore top posts about Redux](https://app.daily.dev/tags/redux?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/111-state-management/106-value-notifier.md b/src/data/roadmaps/flutter/content/111-state-management/106-value-notifier.md
index 45dff4411..1f0bed6ef 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/106-value-notifier.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/106-value-notifier.md
@@ -4,5 +4,5 @@ Flutter's ValueNotifier is a lightweight tool for state management in Flutter. I
 
 Visit the following resources to learn more:
 
-- [@article@ValueNotifier class - Flutter](https://api.flutter.dev/flutter/foundation/ValueNotifier-class.html)
+- [@official@ValueNotifier Class - Flutter](https://api.flutter.dev/flutter/foundation/ValueNotifier-class.html)
 - [@article@ValuerNotifier & ValueListenableBuilder](https://medium.com/@avnishnishad/flutter-communication-between-widgets-using-valuenotifier-and-valuelistenablebuilder-b51ef627a58b)
\ No newline at end of file
diff --git a/src/data/roadmaps/flutter/content/111-state-management/107-change-notifier.md b/src/data/roadmaps/flutter/content/111-state-management/107-change-notifier.md
index e4b261b5a..e84946f3d 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/107-change-notifier.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/107-change-notifier.md
@@ -4,5 +4,5 @@ Flutter's ChangeNotifier is a fundamental class for state management in Flutter.
 
 Visit the following resources to learn more:
 
-- [@article@ChangeNotifier class - Flutter](https://api.flutter.dev/flutter/foundation/ChangeNotifier-class.html)
-- [@article@Simple app state management](https://docs.flutter.dev/data-and-backend/state-mgmt/simple)
\ No newline at end of file
+- [@official@ChangeNotifier class - Flutter](https://api.flutter.dev/flutter/foundation/ChangeNotifier-class.html)
+- [@official@Simple app state management](https://docs.flutter.dev/data-and-backend/state-mgmt/simple)
\ No newline at end of file
diff --git a/src/data/roadmaps/flutter/content/111-state-management/index.md b/src/data/roadmaps/flutter/content/111-state-management/index.md
index e7192b4d3..b30c26121 100644
--- a/src/data/roadmaps/flutter/content/111-state-management/index.md
+++ b/src/data/roadmaps/flutter/content/111-state-management/index.md
@@ -1,16 +1,7 @@
 # State Management
 
-State management in Flutter refers to the process of managing and updating the data or state of a Flutter application. In Flutter, the state of the widgets can change dynamically, for example, when a user interacts with the application. The state management techniques in Flutter include:
-
-- ScopedModel: a third-party state management solution that uses a centralized model to manage the state.
-- Provider: a lightweight solution that allows widgets to access the state with minimal boilerplate code.
-- BLoC (Business Logic Component): a state management technique that uses streams and reactive programming to manage the state.
-- Redux: a state management solution inspired by the Redux library in React.
-- InheritedWidget: a built-in widget that allows the state to be passed down the widget tree.
-
-The choice of state management technique depends on the complexity and size of the project. For smaller projects, Provider or InheritedWidget may be sufficient, while larger projects may require a more robust solution like ScopedModel or Redux.
+State management in Flutter refers to the process of managing and updating the data or state of a Flutter application. In Flutter, the state of the widgets can change dynamically, for example, when a user interacts with the application.
 
 Learn more from the following resources:
 
-- [@article@State management in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt)
-- [@article@Intro to State Management](https://docs.flutter.dev/development/data-and-backend/state-mgmt/intro)
+- [@official@State Management in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt)
diff --git a/src/data/roadmaps/flutter/content/112-animations/100-curved-animations.md b/src/data/roadmaps/flutter/content/112-animations/100-curved-animations.md
index a11fbdea0..83fdc4ae8 100644
--- a/src/data/roadmaps/flutter/content/112-animations/100-curved-animations.md
+++ b/src/data/roadmaps/flutter/content/112-animations/100-curved-animations.md
@@ -1,12 +1,8 @@
 # CurvedAnimations
 
-Curved animations in Flutter can be achieved using the "CurvedAnimation" class. This class takes in a "Curve" object that defines the rate of change of the animation over time. The most commonly used curve is the "Curves.easeInOut" curve, which starts slow, speeds up in the middle, and then slows down again towards the end. To create a curved animation in Flutter, use the following steps:
-
-1. Create a "AnimationController" object that controls the animation.
-2. Create a "CurvedAnimation" object, passing in the "AnimationController" and a "Curve" object.
-3. Use the "CurvedAnimation" object in the animation.
+Curved animations in Flutter can be achieved using the "CurvedAnimation" class. This class takes in a "Curve" object that defines the rate of change of the animation over time. The most commonly used curve is the "Curves.easeInOut" curve, which starts slow, speeds up in the middle, and then slows down again towards the end.
 
 Learn more from the following links:
 
-- [@article@Curved­Animation](https://docs.flutter.dev/development/ui/animations/tutorial)
+- [@official@Curved­Animation](https://docs.flutter.dev/development/ui/animations/tutorial)
 - [@article@CurvedAnimation Class](https://api.flutter.dev/flutter/animation/CurvedAnimation-class.html)
diff --git a/src/data/roadmaps/flutter/content/112-animations/101-animation-controller.md b/src/data/roadmaps/flutter/content/112-animations/101-animation-controller.md
index eda20508e..b00d78e31 100644
--- a/src/data/roadmaps/flutter/content/112-animations/101-animation-controller.md
+++ b/src/data/roadmaps/flutter/content/112-animations/101-animation-controller.md
@@ -11,5 +11,5 @@ By default, an AnimationController linearly produces values that range from 0.0
 
 Learn more from the following links:
 
-- [@article@AnimationController - Flutter](https://docs.flutter.dev/development/ui/animations/tutorial#animationcontroller)
+- [@official@AnimationController - Flutter](https://docs.flutter.dev/ui/animations/tutorial#animationcontroller)
 - [@article@AnimationController class](https://api.flutter.dev/flutter/animation/AnimationController-class.html)
diff --git a/src/data/roadmaps/flutter/content/112-animations/102-animated-builder.md b/src/data/roadmaps/flutter/content/112-animations/102-animated-builder.md
index b95a912a2..9f0c818ef 100644
--- a/src/data/roadmaps/flutter/content/112-animations/102-animated-builder.md
+++ b/src/data/roadmaps/flutter/content/112-animations/102-animated-builder.md
@@ -4,5 +4,5 @@ AnimatedBuilder is a widget in Flutter that allows you to build animations. It t
 
 Learn more from the following links:
 
-- [@article@AnimatedBuilder Class](https://api.flutter.dev/flutter/widgets/AnimatedBuilder-class.html)
+- [@official@AnimatedBuilder Class](https://api.flutter.dev/flutter/widgets/AnimatedBuilder-class.html)
 - [@article@Refactoring with AnimatedBuilders](https://docs.flutter.dev/development/ui/animations/tutorial#refactoring-with-animatedbuilder)
diff --git a/src/data/roadmaps/flutter/content/112-animations/103-animated-widget.md b/src/data/roadmaps/flutter/content/112-animations/103-animated-widget.md
index a3fb7b0e2..2d79f9c74 100644
--- a/src/data/roadmaps/flutter/content/112-animations/103-animated-widget.md
+++ b/src/data/roadmaps/flutter/content/112-animations/103-animated-widget.md
@@ -4,5 +4,5 @@ AnimatedWidget is a Flutter widget that takes an `Animation` object as an argume
 
 Learn more from the following links:
 
-- [@article@Simplifying with Animated­Widget](https://docs.flutter.dev/development/ui/animations/tutorial#simplifying-with-animatedwidgets)
+- [@official@Simplifying with Animated­Widget](https://docs.flutter.dev/development/ui/animations/tutorial#simplifying-with-animatedwidgets)
 - [@article@AnimatedWidget Class](https://api.flutter.dev/flutter/widgets/AnimatedWidget-class.html)
diff --git a/src/data/roadmaps/flutter/content/112-animations/104-hero.md b/src/data/roadmaps/flutter/content/112-animations/104-hero.md
index 6ca66f90d..238bba90d 100644
--- a/src/data/roadmaps/flutter/content/112-animations/104-hero.md
+++ b/src/data/roadmaps/flutter/content/112-animations/104-hero.md
@@ -4,6 +4,5 @@ Hero is a widget in Flutter that allows you to create smooth animations between
 
 Visit the following resources to learn more:
 
-- [@article@Hero animations](https://docs.flutter.dev/development/ui/animations/hero-animations)
+- [@official@Hero Animations](https://docs.flutter.dev/development/ui/animations/hero-animations)
 - [@article@HeroAnimation class](https://docs.flutter.dev/development/ui/animations/hero-animations#heroanimation-class)
-- [@article@Hero class](https://api.flutter.dev/flutter/widgets/Hero-class.html)
diff --git a/src/data/roadmaps/flutter/content/112-animations/105-opacity.md b/src/data/roadmaps/flutter/content/112-animations/105-opacity.md
index c31133008..4cc6598e0 100644
--- a/src/data/roadmaps/flutter/content/112-animations/105-opacity.md
+++ b/src/data/roadmaps/flutter/content/112-animations/105-opacity.md
@@ -4,5 +4,5 @@ Opacity is a Flutter widget that allows you to control the transparency of its c
 
 Visit the following resources to learn more:
 
-- [@article@Fade a widget in and out](https://docs.flutter.dev/cookbook/animation/opacity-animation)
+- [@official@Fade a Widget in and out](https://docs.flutter.dev/cookbook/animation/opacity-animation)
 - [@article@AnimatedOpacity widget](https://docs.flutter.dev/codelabs/implicit-animations#animate-opacity-with-animatedopacity-widgets)
diff --git a/src/data/roadmaps/flutter/content/112-animations/index.md b/src/data/roadmaps/flutter/content/112-animations/index.md
index 1d0f7e713..c8f28dd32 100644
--- a/src/data/roadmaps/flutter/content/112-animations/index.md
+++ b/src/data/roadmaps/flutter/content/112-animations/index.md
@@ -4,5 +4,5 @@ Flutter’s animation support makes it easy to implement a variety of animation
 
 Visit the following resources to learn more:
 
-- [@article@Introduction to animations](https://docs.flutter.dev/development/ui/animations)
+- [@official@Introduction to Animations](https://docs.flutter.dev/development/ui/animations)
 - [@article@Animation library](https://api.flutter.dev/flutter/animation/animation-library.html)
diff --git a/src/data/roadmaps/flutter/content/113-testing/100-unit-testing.md b/src/data/roadmaps/flutter/content/113-testing/100-unit-testing.md
index 1e173fd5f..8b23117e6 100644
--- a/src/data/roadmaps/flutter/content/113-testing/100-unit-testing.md
+++ b/src/data/roadmaps/flutter/content/113-testing/100-unit-testing.md
@@ -2,10 +2,8 @@
 
 Unit testing in Flutter is the process of testing individual units of code, such as functions or classes, to ensure that they behave as expected. Unit testing helps to catch bugs early in the development process and increases the confidence in your code by making it easier to refactor or make changes without breaking existing functionality.
 
-In Flutter, you can write unit tests using the test package, which provides a testing framework and various test utilities. You can write tests that run on the Dart VM or on a physical device or emulator. The tests are written using a combination of Dart code and special test functions provided by the test package. You can use assert statements to verify the behavior of your code, and the testing framework will report whether the tests pass or fail.
-
 Visit the following resources to learn more:
 
-- [@article@An introduction to unit testing](https://docs.flutter.dev/cookbook/testing/unit/introduction)
-- [@article@Unit tests - Flutter](https://docs.flutter.dev/testing#unit-tests)
+- [@official@Introduction to Unit Testing](https://docs.flutter.dev/cookbook/testing/unit/introduction)
+- [@official@Unit Tests - Flutter](https://docs.flutter.dev/testing#unit-tests)
 - [@feed@Explore top posts about Testing](https://app.daily.dev/tags/testing?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/113-testing/101-widget-testing.md b/src/data/roadmaps/flutter/content/113-testing/101-widget-testing.md
index 9f98ffbf6..1bf05e6d9 100644
--- a/src/data/roadmaps/flutter/content/113-testing/101-widget-testing.md
+++ b/src/data/roadmaps/flutter/content/113-testing/101-widget-testing.md
@@ -2,12 +2,8 @@
 
 Widget testing in Flutter is the process of testing the behavior and appearance of individual widgets, in isolation from the rest of your app. It allows you to verify that a widget works correctly, displays the expected output, and behaves correctly in response to user interactions.
 
-In Flutter, you can write widget tests using the `flutter_test` package, which provides a testing framework for writing and running widget tests. A widget test is similar to a unit test, but instead of testing individual functions, you test entire widgets. You can use the `TestWidgetsFlutterBinding` to run your widget tests and simulate user interactions, such as taps, scrolls, and other gestures.
-
-The framework provides several utility functions to help you build and test widgets, such as `pumpWidget`, which allows you to pump a widget and its children into the widget tree and simulate a frame of animation, and `find`, which allows you to search the widget tree for a widget that matches specific criteria.
-
 Visit the following resources to learn more:
 
-- [@article@An introduction to widget testing](https://docs.flutter.dev/cookbook/testing/widget/introduction)
-- [@article@Widget Tests - Flutter](https://docs.flutter.dev/testing#widget-tests)
+- [@official@Introduction to Widget Testing](https://docs.flutter.dev/cookbook/testing/widget/introduction)
+- [@official@Widget Tests - Flutter](https://docs.flutter.dev/testing#widget-tests)
 - [@feed@Explore top posts about Testing](https://app.daily.dev/tags/testing?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/113-testing/102-integration-testing.md b/src/data/roadmaps/flutter/content/113-testing/102-integration-testing.md
index 54ed6ec02..ad49b2ac8 100644
--- a/src/data/roadmaps/flutter/content/113-testing/102-integration-testing.md
+++ b/src/data/roadmaps/flutter/content/113-testing/102-integration-testing.md
@@ -2,12 +2,8 @@
 
 Integration tests in Flutter are tests that verify the behavior of your app as a whole, rather than individual widgets or functions. Integration tests allow you to test the interactions between different parts of your app and verify that the overall behavior of the app is correct.
 
-In Flutter, you can write integration tests using the `flutter_driver` package, which provides a testing framework for writing and running integration tests. An integration test runs on a physical device or an emulator, and uses the `FlutterDriver` class to interact with the app and simulate user interactions, such as taps, scrolls, and gestures.
-
-The framework provides several utility functions to help you interact with your app, such as `tap`, `scroll`, and `enterText`, which allow you to perform actions in your app and verify its behavior. You can also use `waitFor`, which allows you to wait for specific conditions to be met before continuing with the test.
-
 Visit the following resources to learn more:
 
-- [@article@An introduction to integration testing](https://docs.flutter.dev/cookbook/testing/integration/introduction)
-- [@article@Integration Tests](https://docs.flutter.dev/testing#integration-tests)
+- [@official@Introduction to Integration Testing](https://docs.flutter.dev/cookbook/testing/integration/introduction)
+- [@official@Integration Tests](https://docs.flutter.dev/testing#integration-tests)
 - [@feed@Explore top posts about Testing](https://app.daily.dev/tags/testing?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/113-testing/103-tdd.md b/src/data/roadmaps/flutter/content/113-testing/103-tdd.md
index 4c26cc311..3dc8686d0 100644
--- a/src/data/roadmaps/flutter/content/113-testing/103-tdd.md
+++ b/src/data/roadmaps/flutter/content/113-testing/103-tdd.md
@@ -2,8 +2,6 @@
 
 Test-driven development (TDD) is a software development methodology in which tests are written before the implementation of the code they are testing. The idea behind TDD is to write a failing test first, then write just enough code to make the test pass, and then refactor the code if necessary. This process is repeated for each new feature or requirement that is added to the app.
 
-In Flutter, TDD can be applied using the `test` and `flutter_test` packages, which provide testing frameworks for writing and running unit tests and widget tests, respectively. TDD can be used to write tests for individual functions, classes, and widgets, as well as integration tests that verify the behavior of the app as a whole.
-
 Learn more from the following links:
 
 - [@article@Test-Driven Development in Flutter](https://techblog.geekyants.com/test-driven-development-in-flutter)
diff --git a/src/data/roadmaps/flutter/content/113-testing/104-bdd.md b/src/data/roadmaps/flutter/content/113-testing/104-bdd.md
index a1f0248d6..f94e7fe6b 100644
--- a/src/data/roadmaps/flutter/content/113-testing/104-bdd.md
+++ b/src/data/roadmaps/flutter/content/113-testing/104-bdd.md
@@ -2,9 +2,7 @@
 
 Behavior-driven development (BDD) is a software development methodology that emphasizes collaboration between developers, testers, and stakeholders to define and verify the behavior of an application. BDD uses natural language to describe the expected behavior of the application and provides a shared understanding of the requirements for the development team.
 
-In Flutter, BDD can be applied using the `flutter_driver` package, which provides a testing framework for writing and running integration tests. BDD can be used to write tests that verify the behavior of the app as a whole, rather than individual widgets or functions.
-
-Learn morer from the following links:
+Learn more from the following links:
 
 - [@article@Build Flutter with BDD](https://medium.com/tide-engineering-team/build-flutter-with-bdd-b4507170a2fe)
 - [@video@Tutorial - BDD in Flutter](https://www.youtube.com/watch?v=Kwvsc31FE_8)
diff --git a/src/data/roadmaps/flutter/content/113-testing/index.md b/src/data/roadmaps/flutter/content/113-testing/index.md
index 820267052..74998c4f5 100644
--- a/src/data/roadmaps/flutter/content/113-testing/index.md
+++ b/src/data/roadmaps/flutter/content/113-testing/index.md
@@ -2,17 +2,8 @@
 
 Testing is a crucial part of the development process in Flutter, as it helps you to verify the behavior and appearance of your app and ensure that it behaves correctly and consistently across different devices and platforms.
 
-There are several types of tests that you can write to verify the behavior and appearance of your app:
-
-- Unit tests
-- Widget tests
-- Integration tests
-- Acceptance tests
-
-In Flutter, you can write tests using the test and flutter\_test packages, which provide testing frameworks for writing and running unit tests and widget tests, respectively. You can also use the flutter\_driver package, which provides a testing framework for writing and running integration tests.
-
 Learn more from the following links:
 
-- [@article@Dart Testing](https://dart.dev/guides/testing)
-- [@article@Testing Flutter apps](https://docs.flutter.dev/testing)
+- [@official@Dart Testing](https://dart.dev/guides/testing)
+- [@official@Testing Flutter Apps](https://docs.flutter.dev/testing)
 - [@feed@Explore top posts about Testing](https://app.daily.dev/tags/testing?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/114-reactive-programming/100-rxdart.md b/src/data/roadmaps/flutter/content/114-reactive-programming/100-rxdart.md
index 9bf3d8d93..5c502937c 100644
--- a/src/data/roadmaps/flutter/content/114-reactive-programming/100-rxdart.md
+++ b/src/data/roadmaps/flutter/content/114-reactive-programming/100-rxdart.md
@@ -2,5 +2,7 @@
 
 RxDart is a library for Dart that provides additional functionality for working with reactive programming, specifically with the Streams and Observables classes. It extends the standard Dart Streams API and provides additional features such as the ability to transform and combine streams, and to compose and chain streams together. In Flutter, RxDart is commonly used to handle asynchronous data streams and user interactions in a more efficient and elegant way.
 
-- [@article@RxDart Official Docs](https://pub.dev/documentation/rxdart/latest)
+Learn more from the following links:
+
+- [@official@RxDart Documentation](https://pub.dev/documentation/rxdart/latest)
 - [@article@Overview of RxDart in Flutter](https://docs.flutter.dev/development/data-and-backend/state-mgmt/options#bloc--rx)
diff --git a/src/data/roadmaps/flutter/content/114-reactive-programming/index.md b/src/data/roadmaps/flutter/content/114-reactive-programming/index.md
index 642430ce1..a63a36449 100644
--- a/src/data/roadmaps/flutter/content/114-reactive-programming/index.md
+++ b/src/data/roadmaps/flutter/content/114-reactive-programming/index.md
@@ -1,10 +1,6 @@
 # Reactive Programming
 
-Reactive programming is a programming paradigm that allows for handling changing data streams and updating the UI based on those changes. In Flutter, reactive programming can be achieved using:
-
-1. Streams: A sequence of asynchronous events.
-2. Futures: A way to represent a single asynchronous operation.
-3. BLoCs (Business Logic Components): A state management pattern that uses streams to separate business logic from UI code.
+Reactive programming is a programming paradigm that allows for handling changing data streams and updating the UI based on those changes.
 
 Reactive programming in Flutter helps create dynamic and responsive apps that can handle changing data and update the UI accordingly. The `StreamBuilder` and `FutureBuilder` widgets are commonly used in Flutter to build reactive UIs.
 
diff --git a/src/data/roadmaps/flutter/content/115-dev-tools/100-flutter-inspector.md b/src/data/roadmaps/flutter/content/115-dev-tools/100-flutter-inspector.md
index 474141d73..be652897c 100644
--- a/src/data/roadmaps/flutter/content/115-dev-tools/100-flutter-inspector.md
+++ b/src/data/roadmaps/flutter/content/115-dev-tools/100-flutter-inspector.md
@@ -2,15 +2,8 @@
 
 It is a tool in the Flutter SDK that provides a visual representation of the widget tree in a Flutter app. It allows developers to inspect the widgets in their app, see the properties and styles applied to each widget, and interact with the app in real-time.
 
-With the Flutter Inspector, developers can:
-
-1. Debug the widget tree and see how the widgets are laid out.
-2. Modify properties of widgets in real-time to see the impact on the app.
-3. Inspect the properties and styles of individual widgets, and view any errors or warnings.
-4. Measure the performance of the app, including the frame rate and number of widgets.
-
 Visit the following resources to learn more:
 
-- [@article@Using the Flutter inspector](https://docs.flutter.dev/development/tools/devtools/inspector)
+- [@official@Using the Flutter Inspector](https://docs.flutter.dev/development/tools/devtools/inspector)
 - [@video@How to Use the Flutter Inspector](https://www.youtube.com/watch?v=CcLfGJZS8ns)
 - [@feed@Explore top posts about Flutter](https://app.daily.dev/tags/flutter?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/115-dev-tools/101-flutter-outline.md b/src/data/roadmaps/flutter/content/115-dev-tools/101-flutter-outline.md
index 4edae8ee9..49a5a96cc 100644
--- a/src/data/roadmaps/flutter/content/115-dev-tools/101-flutter-outline.md
+++ b/src/data/roadmaps/flutter/content/115-dev-tools/101-flutter-outline.md
@@ -2,11 +2,6 @@
 
 Flutter Outline is a feature in the Flutter development environment (IDE) that provides a tree-like representation of the widgets and elements in your Flutter app. It shows the hierarchy of the widgets, their relationships, and the structure of your app.
 
-The Flutter Outline can be used to:
+Visit the following resources to learn more:
 
-- Navigate through your code
-- Understand the widget hierarchy
-- Debug your code
-- Refactor your code
-
-The Flutter Outline is a useful tool for Flutter developers, as it provides a high-level overview of your app and makes it easier to navigate and understand the code. It can help you to write better code and debug your app more efficiently.
+- [@official@Flutter Outline](https://api.flutter.dev/flutter/material/OutlinedButton-class.html)
diff --git a/src/data/roadmaps/flutter/content/115-dev-tools/102-memory-allocation.md b/src/data/roadmaps/flutter/content/115-dev-tools/102-memory-allocation.md
index 0fb81045b..daa7dac09 100644
--- a/src/data/roadmaps/flutter/content/115-dev-tools/102-memory-allocation.md
+++ b/src/data/roadmaps/flutter/content/115-dev-tools/102-memory-allocation.md
@@ -2,8 +2,6 @@
 
 Memory allocation is the process of reserving a portion of the device's memory for the use of your app. The memory allocation in Flutter is managed by the Dart virtual machine, which uses a garbage collector to automatically manage the memory used by the app.
 
-In Flutter, the widgets in the app's widget tree represent the state of the app. When the state changes, the widgets are rebuilt and the previous state's memory is automatically collected by the garbage collector.
+Visit the following resources to learn more:
 
-Visit the following links:
-
-- [@article@Using the Memory view](https://docs.flutter.dev/development/tools/devtools/memory)
+- [@official@Using the Memory view](https://docs.flutter.dev/development/tools/devtools/memory)
diff --git a/src/data/roadmaps/flutter/content/115-dev-tools/index.md b/src/data/roadmaps/flutter/content/115-dev-tools/index.md
index d0958c3d4..8cdabe534 100644
--- a/src/data/roadmaps/flutter/content/115-dev-tools/index.md
+++ b/src/data/roadmaps/flutter/content/115-dev-tools/index.md
@@ -1,17 +1,9 @@
 # Dev Tools
 
-Flutter DevTools is a suite of development tools provided by Flutter to help developers build, test, and debug Flutter apps. The tools include:
+Flutter DevTools is a suite of development tools provided by Flutter to help developers build, test, and debug Flutter apps.
 
-1. CLI: A command-line interface for managing and building Flutter apps.
-2. Doctor: A tool for diagnosing Flutter installation issues.
-3. Emulator: An emulator for running and testing Flutter apps.
-4. Observatory: A performance profiling tool for Flutter apps.
-5. Dart DevTools: A browser-based suite of development tools for Dart, including a debugger and performance profiling tools.
-6. Hot Reload: A feature that allows developers to see the impact of code changes in real-time.
-7. DevTools Extension: A browser extension that provides advanced debugging and performance profiling capabilities for Flutter apps.
+Learn more from the following resources:
 
-Learn more from the following links:
-
-- [@article@Flutter - DevTools](https://docs.flutter.dev/development/tools/devtools/overview)
-- [@article@Dart DevTools](https://dart.dev/tools/dart-devtools)
+- [@official@Flutter - DevTools](https://docs.flutter.dev/development/tools/devtools/overview)
+- [@official@Dart DevTools](https://dart.dev/tools/dart-devtools)
 - [@feed@Explore top posts about Tools](https://app.daily.dev/tags/tools?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/116-flutter-internals/100-render-objects.md b/src/data/roadmaps/flutter/content/116-flutter-internals/100-render-objects.md
index ca68e04b9..d0b64c147 100644
--- a/src/data/roadmaps/flutter/content/116-flutter-internals/100-render-objects.md
+++ b/src/data/roadmaps/flutter/content/116-flutter-internals/100-render-objects.md
@@ -4,5 +4,5 @@ RenderObject's can be defined as "Objects" that render and manipulate layouts, s
 
 Visit the following resources to learn more:
 
-- [@article@RenderObject documentation](https://api.flutter.dev/flutter/rendering/RenderObject-class.html)
+- [@official@RenderObject Documentation](https://api.flutter.dev/flutter/rendering/RenderObject-class.html)
 - [@article@Get started with RenderObjects - Flutter](https://jasper-dev.hashnode.dev/getting-started-with-renderobjects-in-flutter)
diff --git a/src/data/roadmaps/flutter/content/116-flutter-internals/102-immutability.md b/src/data/roadmaps/flutter/content/116-flutter-internals/102-immutability.md
index dab41ee1c..79a29ea74 100644
--- a/src/data/roadmaps/flutter/content/116-flutter-internals/102-immutability.md
+++ b/src/data/roadmaps/flutter/content/116-flutter-internals/102-immutability.md
@@ -2,8 +2,6 @@
 
 Immutability in Flutter refers to objects that cannot be changed once they are created. In Flutter, immutability is used to ensure that objects in the widget tree are not modified unexpectedly, which can lead to unexpected behavior and bugs in the app.
 
-In Flutter, objects that represent the state of the app, such as widgets and their properties, are considered immutable. When the state of the app changes, a new object is created to represent the new state, and the widget tree is rebuilt with the updated objects.
+Visit the following resources to learn more:
 
-Learn more from the following links:
-
-- [@article@Immutable data in Flutter](https://dart.academy/immutable-data-patterns-in-dart-and-flutter/)
+- [@article@Immutable Data in Flutter](https://dart.academy/immutable-data-patterns-in-dart-and-flutter/)
diff --git a/src/data/roadmaps/flutter/content/116-flutter-internals/103-3-trees.md b/src/data/roadmaps/flutter/content/116-flutter-internals/103-3-trees.md
index 3e0e8aab3..ca718c929 100644
--- a/src/data/roadmaps/flutter/content/116-flutter-internals/103-3-trees.md
+++ b/src/data/roadmaps/flutter/content/116-flutter-internals/103-3-trees.md
@@ -2,9 +2,7 @@
 
 A tree is a data structure that is used to represent the hierarchy of widgets in a Flutter app. The tree structure allows Flutter to manage the layout, styling, and behavior of the widgets in the app.
 
-A Flutter app's widget tree is created by composing smaller widgets into larger ones, which are then added to the tree. The root node of the tree represents the entire app, while the other nodes represent individual widgets.
-
-Learn more from the following links:
+Visit the following resources to learn more:
 
+- [@official@Tree in Flutter](https://docs.flutter.dev/resources/inside-flutter#tree-surgery)
 - [@article@Beginning Flutter — Understanding Tree](https://medium.com/@JediPixels/beginning-flutter-understanding-the-widget-tree-3513c94dc356)
-- [@article@Tree in Flutter](https://docs.flutter.dev/resources/inside-flutter#tree-surgery)
diff --git a/src/data/roadmaps/flutter/content/116-flutter-internals/index.md b/src/data/roadmaps/flutter/content/116-flutter-internals/index.md
index f23df5a01..fa8d03aef 100644
--- a/src/data/roadmaps/flutter/content/116-flutter-internals/index.md
+++ b/src/data/roadmaps/flutter/content/116-flutter-internals/index.md
@@ -1,12 +1,8 @@
 # Flutter Internals
 
-The internal workings of Flutter refer to the underlying mechanisms and architecture that make up the Flutter framework.
+The internal workings of Flutter refer to the underlying mechanisms and architecture that make up the Flutter framework. Flutter is a reactive framework for building user interfaces, which means that it allows developers to build dynamic, responsive apps that update automatically in response to changes in the state of the app.
 
-At a high level, Flutter is a reactive framework for building user interfaces, which means that it allows developers to build dynamic, responsive apps that update automatically in response to changes in the state of the app.
-
-Flutter achieves this by using a unique rendering engine that is based on the Skia graphics library. The rendering engine allows Flutter to render complex animations and graphics with high performance, and it also provides a way for Flutter to manage the layout and size of widgets in the app.
-
-Visit the following links:
+Visit the following resources to learn more:
 
 - [@article@Flutter - Internals](https://www.didierboelens.com/2019/09/flutter-internals/)
 - [@article@Overview of Flutter Internals](https://flutter.megathink.com/)
diff --git a/src/data/roadmaps/flutter/content/117-ci-cd/100-fast-lane.md b/src/data/roadmaps/flutter/content/117-ci-cd/100-fast-lane.md
index 5050d7d02..d851b3906 100644
--- a/src/data/roadmaps/flutter/content/117-ci-cd/100-fast-lane.md
+++ b/src/data/roadmaps/flutter/content/117-ci-cd/100-fast-lane.md
@@ -4,6 +4,6 @@ Fastlane is a third-party tool for automating the development and deployment pro
 
 Fastlane provides a suite of tools for automating tasks such as building, testing, and distributing apps. For example, fastlane can automate the process of building an app, creating a release candidate, and submitting the app to the app store.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
-- [@article@Fast Lane - CI/CD in Flutter](https://docs.flutter.dev/deployment/cd)
+- [@official@Fast Lane - CI/CD in Flutter](https://docs.flutter.dev/deployment/cd)
diff --git a/src/data/roadmaps/flutter/content/117-ci-cd/101-codemagic.md b/src/data/roadmaps/flutter/content/117-ci-cd/101-codemagic.md
index 6f061ae64..af2c11d90 100644
--- a/src/data/roadmaps/flutter/content/117-ci-cd/101-codemagic.md
+++ b/src/data/roadmaps/flutter/content/117-ci-cd/101-codemagic.md
@@ -4,7 +4,7 @@ Codemagic is a cloud-based continuous integration and delivery (CI/CD) platform
 
 Codemagic provides a simple and efficient way for Flutter developers to automate the build, test, and deployment process for their apps. It integrates with the Flutter framework and allows developers to configure the build process, run tests, and distribute the app to various app stores with just a few clicks.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
 - [@official@Codemagic - Flutter](https://codemagic.io/start/)
 - [@article@Create a build archive with Codemagic](https://docs.flutter.dev/deployment/ios#create-a-build-archive-with-codemagic-cli-tools)
diff --git a/src/data/roadmaps/flutter/content/117-ci-cd/102-bitrise.md b/src/data/roadmaps/flutter/content/117-ci-cd/102-bitrise.md
index bd834a21b..bba0fdf5a 100644
--- a/src/data/roadmaps/flutter/content/117-ci-cd/102-bitrise.md
+++ b/src/data/roadmaps/flutter/content/117-ci-cd/102-bitrise.md
@@ -4,6 +4,6 @@ Bitrise is a cloud-based continuous integration and delivery (CI/CD) platform th
 
 Bitrise provides a comprehensive suite of tools for automating the build, test, and deployment process for mobile apps, including apps built with Flutter. With Bitrise, developers can automate tasks such as building the app, running tests, and distributing the app to various app stores.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
 - [@article@Adding a Flutter app to Bitrise](https://devcenter.bitrise.io/en/getting-started/quick-start-guides/getting-started-with-flutter-apps.html)
diff --git a/src/data/roadmaps/flutter/content/117-ci-cd/103-github-actions.md b/src/data/roadmaps/flutter/content/117-ci-cd/103-github-actions.md
index 9389bb179..9a34ec970 100644
--- a/src/data/roadmaps/flutter/content/117-ci-cd/103-github-actions.md
+++ b/src/data/roadmaps/flutter/content/117-ci-cd/103-github-actions.md
@@ -1,18 +1,9 @@
 # Github Actions
 
-GitHub Actions is a workflow automation tool provided by GitHub that can be used to automate various tasks in a Flutter mobile app development process.
+GitHub Actions is a workflow automation tool provided by GitHub that can be used to automate various tasks in a Flutter mobile app development process. With GitHub Actions, developers can create custom workflows to automate tasks such as building the app, running tests, and deploying the app to various app stores. These workflows are defined as a series of actions in a YAML file, which can be committed to the repository.
 
-With GitHub Actions, developers can create custom workflows to automate tasks such as building the app, running tests, and deploying the app to various app stores. These workflows are defined as a series of actions in a YAML file, which can be committed to the repository.
+Visit the following resources to learn more:
 
-In a Flutter project, GitHub Actions can be used to:
-
-- Automate the build process
-- Run tests
-- Deploy to multiple app stores
-- Monitor the build process
-
-Learn more from the following links:
-
-- [@opensource@Github Actions](https://github.com/features/actions)
+- [@official@Github Actions](https://github.com/features/actions)
 - [@opensource@Flutter - Github Actions](https://github.com/nabilnalakath/flutter-githubaction)
 - [@feed@Explore top posts about GitHub](https://app.daily.dev/tags/github?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/117-ci-cd/104-firebase-app-distribution.md b/src/data/roadmaps/flutter/content/117-ci-cd/104-firebase-app-distribution.md
index 72811ec98..5ff7bc7c3 100644
--- a/src/data/roadmaps/flutter/content/117-ci-cd/104-firebase-app-distribution.md
+++ b/src/data/roadmaps/flutter/content/117-ci-cd/104-firebase-app-distribution.md
@@ -4,7 +4,7 @@ Firebase App Distribution is a service provided by Firebase, a mobile developmen
 
 With Firebase App Distribution, developers can upload a pre-release version of their Flutter mobile app to the Firebase platform, and then invite testers and stakeholders to download and test the app. Testers and stakeholders can provide feedback directly from the app, making it easier for developers to fix bugs and make improvements before releasing the app to the general public.
 
-To learn more visit the following links:
+Visit the following resources to learn more:
 
-- [@article@Firebase Hosting](https://firebase.google.com/docs/hosting)
+- [@official@Firebase Hosting](https://firebase.google.com/docs/hosting)
 - [@feed@Explore top posts about Firebase](https://app.daily.dev/tags/firebase?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/117-ci-cd/index.md b/src/data/roadmaps/flutter/content/117-ci-cd/index.md
index 4888991b7..411ef6c4f 100644
--- a/src/data/roadmaps/flutter/content/117-ci-cd/index.md
+++ b/src/data/roadmaps/flutter/content/117-ci-cd/index.md
@@ -4,14 +4,7 @@ CI/CD (Continuous Integration and Continuous Deployment) is a software developme
 
 With CI/CD, developers can automate the build, test, and deployment process for their Flutter apps, making it easier to catch bugs and deploy new features quickly and efficiently.
 
-The key components of a CI/CD pipeline for a Flutter app are:
+Visit the following resources to learn more:
 
-- Version control
-- Automated builds
-- Automated testing
-- Deployment
-
-Learn more from the following links:
-
-- [@article@CI/CD - Flutter](https://docs.flutter.dev/deployment/cd)
+- [@official@CI/CD - Flutter](https://docs.flutter.dev/deployment/cd)
 - [@feed@Explore top posts about CI/CD](https://app.daily.dev/tags/cicd?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/118-analytics/100-segment.md b/src/data/roadmaps/flutter/content/118-analytics/100-segment.md
index 794dc2df8..fe1520015 100644
--- a/src/data/roadmaps/flutter/content/118-analytics/100-segment.md
+++ b/src/data/roadmaps/flutter/content/118-analytics/100-segment.md
@@ -4,13 +4,6 @@ Segment is an analytics platform that provides a single API for collecting, stor
 
 With Segment, Flutter developers can easily add analytics tracking to their app, without having to integrate with multiple analytics tools individually. Segment acts as a single point of integration, allowing developers to send data to multiple analytics tools with a single API.
 
-Some key features of Segment for Flutter apps include:
+Visit the following resources to learn more:
 
-- Data collection
-- Data routing
-- Data storage
-- User tracking
-
-Learn more from the following links:
-
-- [@article@Doc of flutter_segment](https://pub.dev/packages/flutter_segment)
+- [@official@flutter_segment](https://pub.dev/packages/flutter_segment)
diff --git a/src/data/roadmaps/flutter/content/118-analytics/101-mix-panel.md b/src/data/roadmaps/flutter/content/118-analytics/101-mix-panel.md
index c61fff8e9..05c924ad6 100644
--- a/src/data/roadmaps/flutter/content/118-analytics/101-mix-panel.md
+++ b/src/data/roadmaps/flutter/content/118-analytics/101-mix-panel.md
@@ -4,14 +4,7 @@ Mixpanel is a product analytics platform that provides insights into user behavi
 
 With Mixpanel, Flutter developers can track user interactions with their app, including page views, events, and user properties, and use this data to gain insights into user behavior. Mixpanel provides a range of tools and features for analyzing this data, including real-time dashboards, segmentation, and A/B testing.
 
-Some key features of Mixpanel for Flutter apps include:
-
-- User tracking
-- Real-time dashboards
-- Segmentation
-- A/B testing
-
-Learn more from the following links:
+Visit the following resources to learn more:
 
 - [@article@Overview of Flutter Mixpanel](https://levelup.gitconnected.com/flutter-web-mixpanel-6046ffb664fb)
 - [@article@Flutter Mixpanel Analytics Integration](https://medium.com/flutter-clan/flutter-mixpanel-analytics-integration-b5840b155f7b)
diff --git a/src/data/roadmaps/flutter/content/118-analytics/102-firebase-analytics.md b/src/data/roadmaps/flutter/content/118-analytics/102-firebase-analytics.md
index 7a195fa5d..99f472fdf 100644
--- a/src/data/roadmaps/flutter/content/118-analytics/102-firebase-analytics.md
+++ b/src/data/roadmaps/flutter/content/118-analytics/102-firebase-analytics.md
@@ -4,8 +4,8 @@ Firebase Analytics is a free analytics tool provided by Google that helps to und
 
 With Firebase Analytics, Flutter developers can track user interactions with their app, including page views, events, and user properties, and use this data to gain insights into user behavior. Firebase Analytics provides a range of tools and features for analyzing this data, including real-time dashboards, user segmentation, and funnels.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
-- [@article@Flutter - Firebase](https://docs.flutter.dev/development/data-and-backend/firebase)
+- [@official@Flutter - Firebase](https://docs.flutter.dev/development/data-and-backend/firebase)
 - [@article@How To Add Firebase Analytics in Flutter](https://medium.datadriveninvestor.com/how-to-add-firebase-analytics-to-your-flutter-app-641fbda1d224?gi=ad489389a531)
 - [@feed@Explore top posts about Firebase](https://app.daily.dev/tags/firebase?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/118-analytics/103-google-analytics.md b/src/data/roadmaps/flutter/content/118-analytics/103-google-analytics.md
index 6f4fc2947..4ea3bccc2 100644
--- a/src/data/roadmaps/flutter/content/118-analytics/103-google-analytics.md
+++ b/src/data/roadmaps/flutter/content/118-analytics/103-google-analytics.md
@@ -4,7 +4,7 @@ Google Analytics is a free web analytics service provided by Google that helps t
 
 With Google Analytics, Flutter developers can track user interactions with their app, including page views, events, and user properties, and use this data to gain insights into user behavior. Google Analytics provides a range of tools and features for analyzing this data, including real-time dashboards, user segmentation, and funnels.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
-- [@article@Google Analytics for Firebase](https://firebase.flutter.dev/docs/analytics/overview/)
+- [@official@Google Analytics for Firebase](https://firebase.flutter.dev/docs/analytics/overview/)
 - [@feed@Explore top posts about Google](https://app.daily.dev/tags/google?ref=roadmapsh)
diff --git a/src/data/roadmaps/flutter/content/118-analytics/index.md b/src/data/roadmaps/flutter/content/118-analytics/index.md
index fb7b31e4a..f98f9cb70 100644
--- a/src/data/roadmaps/flutter/content/118-analytics/index.md
+++ b/src/data/roadmaps/flutter/content/118-analytics/index.md
@@ -1,13 +1,8 @@
 # Analytics
 
-Analytics is a key aspect of understanding user behavior and measuring app performance for Flutter apps. There are a number of analytics tools available for Flutter apps, each with their own set of features and benefits. Some of the most popular analytics tools for Flutter include:
+Analytics is a key aspect of understanding user behavior and measuring app performance for Flutter apps. There are a number of analytics tools available for Flutter apps, each with their own set of features and benefits.
 
-1. Firebase Analytics: A free analytics tool provided by Google that helps to understand user behavior and measure app performance for mobile apps.
-2. Google Analytics: A free web analytics service provided by Google that helps to understand user behavior and measure app performance for mobile apps.
-3. Mixpanel: A paid analytics tool that provides a range of features for tracking user behavior, including real-time dashboards, user segmentation, and funnels.
-4. Segment: A paid analytics tool that provides a range of features for tracking user behavior, including real-time dashboards, user segmentation, and funnels.
+Visit the following resources to learn more:
 
-Learn more from the following links:
-
-- [@video@Flutter Analytics using Firebase](https://www.youtube.com/watch?v=31KpJXqCayo)
 - [@article@Top Flutter Analytics](https://fluttergems.dev/analytics-consumer-insights/)
+- [@video@Flutter Analytics using Firebase](https://www.youtube.com/watch?v=31KpJXqCayo)
diff --git a/src/data/roadmaps/flutter/content/119-deployment/100-appstore.md b/src/data/roadmaps/flutter/content/119-deployment/100-appstore.md
index c332ed0d0..bdc2c631d 100644
--- a/src/data/roadmaps/flutter/content/119-deployment/100-appstore.md
+++ b/src/data/roadmaps/flutter/content/119-deployment/100-appstore.md
@@ -4,7 +4,7 @@ App Store is an important platform to consider when publishing Flutter apps. To
 
 To publish a Flutter app on the App Store, developers need to ensure that their app meets Apple's guidelines and requirements, which include guidelines for performance, design, and user experience. Once the app has been reviewed and approved by Apple, it can be published on the App Store and made available for download to iOS users.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
-- [@article@Build and release an iOS app](https://docs.flutter.dev/deployment/ios)
-- [@article@App Store App Review](https://developer.apple.com/app-store/review/)
\ No newline at end of file
+- [@official@Build and Release an iOS App](https://docs.flutter.dev/deployment/ios)
+- [@article@App Store App Review](https://developer.apple.com/app-store/review/)
diff --git a/src/data/roadmaps/flutter/content/119-deployment/101-guidelines-and-protocols.md b/src/data/roadmaps/flutter/content/119-deployment/101-guidelines-and-protocols.md
index 71b027e05..bfe216461 100644
--- a/src/data/roadmaps/flutter/content/119-deployment/101-guidelines-and-protocols.md
+++ b/src/data/roadmaps/flutter/content/119-deployment/101-guidelines-and-protocols.md
@@ -11,6 +11,6 @@ Guidelines and protocols are important considerations for Flutter developers as
 
 By following these guidelines and protocols, Flutter developers can ensure that their apps are well-designed, user-friendly, and secure, making it easier to attract and retain users.
 
-Learn more from the following links:
+Visit the following resources to learn more:
 
 - [@article@Flutter - Protocols](https://api.flutter.dev/objcdoc/Protocols.html)
diff --git a/src/data/roadmaps/flutter/content/119-deployment/101-playstore.md b/src/data/roadmaps/flutter/content/119-deployment/101-playstore.md
index 28008d478..83b2e9cfb 100644
--- a/src/data/roadmaps/flutter/content/119-deployment/101-playstore.md
+++ b/src/data/roadmaps/flutter/content/119-deployment/101-playstore.md
@@ -4,6 +4,6 @@ The Google Play Store is an online store for Android apps, games, and other digi
 
 Visit the following resources to learn more:
 
-- [@article@Publish your app](https://developer.android.com/studio/publish)
-- [@article@Build and release an Android app](https://docs.flutter.dev/deployment/android)
+- [@official@Build and Release an Android App](https://docs.flutter.dev/deployment/android)
+- [@article@Publish your App - Android Developer](https://developer.android.com/studio/publish)
 - [@article@Publishing Flutter App To PlayStore](https://medium.flutterdevs.com/publishing-flutter-app-to-playstore-fa7543b61a7b)
diff --git a/src/data/roadmaps/flutter/content/119-deployment/index.md b/src/data/roadmaps/flutter/content/119-deployment/index.md
index 6e0627a01..c25dd0a63 100644
--- a/src/data/roadmaps/flutter/content/119-deployment/index.md
+++ b/src/data/roadmaps/flutter/content/119-deployment/index.md
@@ -1,16 +1,8 @@
 # Deployment
 
-Deployment in Flutter refers to the process of releasing a Flutter app to end-users. There are several steps involved in deploying a Flutter app, including:
+Deployment in Flutter refers to the process of releasing a Flutter app to end-users. Deploying a Flutter app involves a combination of technical skills and experience, as well as knowledge of the relevant app stores and their policies and requirements.
 
-- Building the app
-- Testing the app
-- Configuring app settings
-- Releasing to app stores
-- Updating the app
+Visit the following resources to learn more:
 
-In general, deploying a Flutter app involves a combination of technical skills and experience, as well as knowledge of the relevant app stores and their policies and requirements.
-
-Learn more from the following links:
-
-- [@article@Flutter - Web deployment](https://dart.dev/web/deployment)
+- [@official@Web Deployment](https://dart.dev/web/deployment)
 - [@feed@Explore top posts about CI/CD](https://app.daily.dev/tags/cicd?ref=roadmapsh)