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,
),