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
|
||||
|
||||
* 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> {
|
||||
int selectedbodyIndex = 0; // Important for state management of the body
|
||||
|
||||
@override
|
||||
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() {
|
||||
return MihPackageAction(
|
||||
icon: Icon(Icons.arrow_back),
|
||||
|
||||
@@ -13,7 +13,7 @@ class ExamplePackage extends StatefulWidget {
|
||||
class _ExamplePackageState extends State<ExamplePackage> {
|
||||
int selectedbodyIndex = 0; // Important for state management of the body
|
||||
late final ToolBodyOne _toolBodyOne;
|
||||
late final Widget _toolBodyTwo;
|
||||
late final ToolBodyTwo _toolBodyTwo;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
|
||||
@@ -32,15 +32,15 @@ class MihPackage extends StatefulWidget {
|
||||
/// The floating action button or primary action trigger for this package.
|
||||
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.
|
||||
final MihPackageTools packageTools;
|
||||
|
||||
/// The list of main content widgets for each "page" of the package.
|
||||
final List<Widget> packageToolBodies;
|
||||
|
||||
/// The titles displayed in the header for each corresponding page.
|
||||
final List<String> packageToolTitles;
|
||||
|
||||
/// An optional drawer for secondary actions.
|
||||
final Drawer? actionDrawer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user