v0.1.0
animating_location_pin
デバイスの場所を取得している間に使用できるアニメーション付きの場所ピンウィジェットを提供するFlutterパッケージです。
36いいね 4430日間ダウンロード40Pub ポイント
プラットフォーム情報なし
アニメーション付きロケーションピン Flutterパッケージ
{"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,
),