nn1ks/floating_action_row
एक फ्लटर पैकेज जो एक पंक्ति या स्तंभ में फ्लोटिंग एक्शन बटन के साथ विजेट प्रदान करता है
- Stars
- 4
- Forks
- 8
- अंतिम पुश (UTC)
- 26 मार्च 2021
- प्रोजेक्ट स्थिति
- सक्रिय
भाषाएँDart
तकनीकी विषय
उपयोग की गई निर्भरताएँ
निर्भरता सूची 2 आइटम
- flutter
{"sdk":"flutter"} - flutter_testडेवलपमेंट
{"sdk":"flutter"}
मूल README
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
README खोलें / बंद करें
floating_action_row
A Flutter package that provides a widget with a row or column of floating action buttons.
https://raw.githubusercontent.com/niklas-8/floating_action_row/master/assets/1.jpgUsage
To use this plugin, add floating_action_row as a dependency in your pubspec.yaml file.
Documentation
View the documentation for more information.
Example
FloatingActionRow(
color: Colors.blueAccent,
children: <Widget>[
FloatingActionRowButton(
icon: Icon(Icons.add),
onTap: () {}
),
FloatingActionRowDivider(),
FloatingActionRowButton(
icon: Icon(Icons.arrow_forward),
onTap: () {}
),
],
)
See the example directory for a full example.
Issues & Feedback
Please file an issue to send feedback or report a bug. Thank you!
Contributing
Every pull request is welcome.