v0.1.0
animating_location_pin
एक फ्लटर पैकेज जो एनिमेटिंग लोकेशन पिन विजेट प्रदान करता है, जिसका उपयोग डिवाइस की स्थिति प्राप्त करते समय किया जा सकता है।
36लाइक 4430-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
एनिमेटिंग लोकेशन पिन फ्लटर पैकेज
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
This Flutter package provides a Animating Location Pin Widget which can be used while fetching device location.
PieChartIn the dependencies: section of your pubspec.yaml, add the following line:
dependencies:
animating_location_pin: <latest version>
import 'package:animating_location_pin/animating_location_pin.dart';
Adding this widget is simple. Just directly use its instance for default configuration
Container(
child: AnimatingLocationPin(),
)
AnimatingLocationPin(
pinAsset: 'assets/images/pin.png',
shadowAsset: 'assets/images/shadow.png',
shadowSizeFactor: 0.4,
duration: Duration(milliseconds: 500),
pinJumpHeight: 44.0,
pinSize: 70.0,
),