xyz_pod 0.44.0 xyz_pod: ^0.44.0 copied to clipboard
This package simplifies state management in Flutter applications and is well-suited for use with a Modular Services State Management (MSSM) pattern.
π½πΎπΏ Pod #
This package simplifies state management in Flutter applications and is well-suited for use with a Modular Services State Management (MSSM) pattern.
Installation #
Use this package as a dependency by adding it to your pubspec.yaml
file (see here).
Documentation #
π Documentation and video tutorials are coming soon. Feel free to contact me for more information.
Resources #
Examples: #
- Example 1: A basic example on how to use a Pod and PodBuilder
- Example 2: A basic example on how to use PodList, PodListHelper and PodListBuilder
- Example 3: Modular Services State Management with RespondingPodListBuilder
- Example 4: A basic example on how to use a PollingPodBuilder
- Example 5: Temp Pods
Slides (Outdated): #
Here is a basic example on how to use a Pod and PodBuilder: #
import 'package:flutter/material.dart';
import 'package:xyz_pod/xyz_pod.dart';
final pTemperature = Pod<double>(68.0);
final pWeatherCondition = Pod<String>('Sunny');
class WeatherPods extends PodListHelper {
const WeatherPods();
PodList get pods => [pTemperature, pWeatherCondition];
double get temperature => pods.elementAt(0)!.value as double;
String get weatherCondition => pods.elementAt(1)!.value as String;
}
void main() {
runApp(
MaterialApp(
home: Material(
child: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
PodListBuilder(
pods: WeatherPods().pods,
builder: (context, child, pods) {
final temperature = WeatherPods().temperature;
final weatherCondition = WeatherPods().weatherCondition;
return Text(
'Today is $weatherCondition and the temperature is $temperatureΒ°F.',
);
},
),
// ... Additional UI and Button to update Pods ...
],
),
),
),
),
);
}
Contributing and Discussions #
This is an open-source project, and contributions are welcome from everyone, regardless of experience level. Contributing to projects is a great way to learn, share knowledge, and showcase your skills to the community. Join the discussions to ask questions, report bugs, suggest features, share ideas, or find out how you can contribute.
TODO: #
- β Set up automatic publishing with GitHub.
- β Write more examples for developers.
- β Write Flutter tests for each feature.
- β Add comments where absent.
- β Improve comments.
- β Improve file structure.
- β Write a manual.
- β Update the slide.
- β Write a blog post.
- β Add a video tutorial.
- β Compare with other state management solutions and see where we can improve.
- β Seek advice and feedback from community.
- β Add useful content to GitHub and Reddit discussions.
Join GitHub Discussions: #
π¬ https://github.com/robmllze/xyz_pod/discussions
Join Reddit Discussions: #
π¬ https://www.reddit.com/r/xyz_pod/
Chief Maintainer: #
π§ Email Robert Mollentze at robmllze@gmail.com
License #
This project is released under the MIT License. See LICENSE for more information.