so_flutter 0.3.1
so_flutter: ^0.3.1 copied to clipboard
A wrapper around Flutter's App concepts. This package provides is a small set of helper classes for quickly building Flutter applications based on Material design.
0.0.1 #
- Initial release.
0.0.2 #
- Documentation updated.
- Theme support added.
0.0.3 #
- Added more examples.
0.0.4 #
- Merged examples into a single file because multiple example files can't be published.
0.0.5 #
- Documentation typos corrected.
0.0.6 #
Apphas new static methods such asgoBack(),message(...),alert(...)etc. See the usages in the example.- New class:
Field- represents a data entry field. - New class:
DataScreen- for data entry. Contains helper methods for creating text field and date field. (More field types will be added in the future). See the usages in the example.
0.0.7 #
- New types of
Fieldadded - Fields to acceptdoubleandintvalues. Check the newDataScreenmethods.
0.1.0 #
- Breaking change: Appropriate type-specific validators and related arguments are added for type-specific
Fieldssuch as numeric fields and date fields. - Because of the signature changes, your code needs to be re-complied if any such functionalities were already used.
- Updated example code with the addition of validators in the data entry screen.
0.2.0 #
- Added new
Fieldtypes in theDataScreen. Seeselections(...)andselection(...)methods.
0.3.0 #
- Breaking change: Renamed
DataScreenmethodsselections(...)andselection(...)toselectionsField(...)andselectionField(...)respectively for consistency. - Added new
Fieldtypes in theDataScreenfor acceptingboolvalues. SeecheckboxField(...)andswitchField(...)methods.
0.3.1 #
- New types of
Fieldadded. Check the newDataScreenmethods:comboField(...),choiceField(...). - Code refactored into multiple part files.
- Minor bug fixes.