https://github.com/stelselim/tfmodel_flutter_package
Flutter Package for showing Transfer Function Model.
https://github.com/stelselim/tfmodel_flutter_package
control flutter package transferfunction
Last synced: about 1 month ago
JSON representation
Flutter Package for showing Transfer Function Model.
- Host: GitHub
- URL: https://github.com/stelselim/tfmodel_flutter_package
- Owner: stelselim
- License: mit
- Created: 2021-07-10T14:16:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-12T08:21:48.000Z (almost 5 years ago)
- Last Synced: 2025-10-23T02:54:43.042Z (8 months ago)
- Topics: control, flutter, package, transferfunction
- Language: C++
- Homepage:
- Size: 2.23 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# tfmodel
A Flutter package helps to show transfer functions properly. It also includes a transfer function component widget.

## Installation
```yaml
dependencies:
tfmodel:
```
## How To Use
```dart
var tfmodel = TFModel(
numerator: "1 0 2.4",
denominator: "2.2 -2 0 5.2",
showFormatError: false,
);
var tfComponent = TFComponent(
system: tfmodel,
// divider: Divider(),
// denominatorTextStyle: TextStyle(),
// numeratorTextStyle: TextStyle(),
);
```