Changelog file update and final tweeks
This commit is contained in:
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,3 +1,14 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## 0.0.1
|
## 0.0.1
|
||||||
|
|
||||||
* TODO: Describe initial release.
|
### Initial Release
|
||||||
|
A comprehensive UI toolkit and utility library specifically designed for creating MIH Packages. This version includes a curated set of widgets, forms, and design utilities.
|
||||||
|
|
||||||
|
* **Form Elements**: Includes `MihButton`, `MihForm`, `MihTextFormField`, `MihDateField`, `MihTimeField`, and `MihDropdownField`, `MihSearchBar`, for streamlined data entry.
|
||||||
|
* **Navigation & Layout**: Complex structural components like `MihPackage`, `MihPackageTitle`, `MihPackageAction`, `MihPackageTools`, `MihPackageToolBody`, `MihPackageWindow`, `MihSingleChildScroll`, and `MihFloatingMenu`, .
|
||||||
|
* **Feedback & Progress**: Pre-styled `MihSnackBar` and `MihLoadingCircle` for user interaction.
|
||||||
|
* **Design Tokens**: Built-in access to `MihColors` and `MihIcons` to ensure brand compliance.
|
||||||
|
* **Specialized Controls**: Widgets like `MihNumericStepper`, `MihRadioOptions`, and `MihToggle`.
|
||||||
@@ -46,7 +46,6 @@ class ExamplePackage extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _ExamplePackageState extends State<ExamplePackage> {
|
class _ExamplePackageState extends State<ExamplePackage> {
|
||||||
int selectedbodyIndex = 0; // Important for state management of the body
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@@ -64,6 +63,8 @@ class _ExamplePackageState extends State<ExamplePackage> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int selectedbodyIndex = 0; // Important for state management of the body
|
||||||
|
|
||||||
Widget actionButton() {
|
Widget actionButton() {
|
||||||
return MihPackageAction(
|
return MihPackageAction(
|
||||||
icon: Icon(Icons.arrow_back),
|
icon: Icon(Icons.arrow_back),
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ class ExamplePackage extends StatefulWidget {
|
|||||||
class _ExamplePackageState extends State<ExamplePackage> {
|
class _ExamplePackageState extends State<ExamplePackage> {
|
||||||
int selectedbodyIndex = 0; // Important for state management of the body
|
int selectedbodyIndex = 0; // Important for state management of the body
|
||||||
late final ToolBodyOne _toolBodyOne;
|
late final ToolBodyOne _toolBodyOne;
|
||||||
late final Widget _toolBodyTwo;
|
late final ToolBodyTwo _toolBodyTwo;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
|
|||||||
@@ -32,15 +32,15 @@ class MihPackage extends StatefulWidget {
|
|||||||
/// The floating action button or primary action trigger for this package.
|
/// The floating action button or primary action trigger for this package.
|
||||||
final Widget packageActionButton;
|
final Widget packageActionButton;
|
||||||
|
|
||||||
|
/// The titles displayed in the header for each corresponding page.
|
||||||
|
final List<String> packageToolTitles;
|
||||||
|
|
||||||
/// The toolbar widget containing icons that correspond to the [packageToolBodies] pages.
|
/// The toolbar widget containing icons that correspond to the [packageToolBodies] pages.
|
||||||
final MihPackageTools packageTools;
|
final MihPackageTools packageTools;
|
||||||
|
|
||||||
/// The list of main content widgets for each "page" of the package.
|
/// The list of main content widgets for each "page" of the package.
|
||||||
final List<Widget> packageToolBodies;
|
final List<Widget> packageToolBodies;
|
||||||
|
|
||||||
/// The titles displayed in the header for each corresponding page.
|
|
||||||
final List<String> packageToolTitles;
|
|
||||||
|
|
||||||
/// An optional drawer for secondary actions.
|
/// An optional drawer for secondary actions.
|
||||||
final Drawer? actionDrawer;
|
final Drawer? actionDrawer;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user