-
-
Notifications
You must be signed in to change notification settings - Fork 898
fix: improve fling behaviour when pointer leaves window #2158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ca1141a
fix fling rebound
ben-milanko 05e0e17
Add configurable spring damping
ben-milanko 5d0eca5
Merge branch 'master' into fix/fling-rebound
JaffaKetchup 3b7e511
Merge branch 'master' into fix/fling-rebound
JaffaKetchup 1be4e1b
Merge branch 'master' into fix/fling-rebound
ben-milanko 7b89687
Update lib/src/map/options/interaction.dart
ben-milanko 581f79c
Track prevous focal point
ben-milanko 1424418
Merge branch 'master' into fix/fling-rebound
ben-milanko 9641daa
Merge branch 'master' into fix/fling-rebound
JaffaKetchup 3fa78a1
Merge branch 'master' into fix/fling-rebound
ben-milanko 5d5ef43
Merge branch 'master' into fix/fling-rebound
JaffaKetchup File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,129 @@ | ||
| import 'package:flutter/material.dart'; | ||
| import 'package:flutter_map/flutter_map.dart'; | ||
| import 'package:flutter_map_example/misc/tile_providers.dart'; | ||
| import 'package:flutter_map_example/widgets/drawer/menu_drawer.dart'; | ||
| import 'package:latlong2/latlong.dart'; | ||
|
|
||
| class FlingAnimationDampingPage extends StatefulWidget { | ||
| static const String route = '/fling_animation_damping'; | ||
|
|
||
| const FlingAnimationDampingPage({super.key}); | ||
|
|
||
| @override | ||
| State<FlingAnimationDampingPage> createState() => | ||
| _FlingAnimationDampingPageState(); | ||
| } | ||
|
|
||
| class _FlingAnimationDampingPageState extends State<FlingAnimationDampingPage> { | ||
| double _dampingRatio = 2; | ||
|
|
||
| @override | ||
| Widget build(BuildContext context) { | ||
| return Scaffold( | ||
| appBar: AppBar(title: const Text('Fling Animation Damping')), | ||
| drawer: const MenuDrawer(FlingAnimationDampingPage.route), | ||
| body: Column( | ||
| children: [ | ||
| Padding( | ||
| padding: const EdgeInsets.all(16), | ||
| child: Column( | ||
| crossAxisAlignment: CrossAxisAlignment.stretch, | ||
| children: [ | ||
| Text( | ||
| 'Damping Ratio: ${_dampingRatio.toStringAsFixed(1)}', | ||
| style: Theme.of(context).textTheme.titleMedium, | ||
| textAlign: TextAlign.center, | ||
| ), | ||
| const SizedBox(height: 8), | ||
| const Text( | ||
| 'Drag the map and release to see the fling animation. ' | ||
| 'Lower values = less momentum, stops quicker. ' | ||
| 'Higher values = more momentum, bouncier feel. ', | ||
| textAlign: TextAlign.center, | ||
| style: TextStyle(fontSize: 12), | ||
| ), | ||
| const SizedBox(height: 8), | ||
| Row( | ||
| children: [ | ||
| const Text('Damped (1)'), | ||
| Expanded( | ||
| child: Slider( | ||
| value: _dampingRatio, | ||
| min: 1, | ||
| max: 10, | ||
| divisions: 19, | ||
| label: _dampingRatio.toStringAsFixed(1), | ||
| onChanged: (value) { | ||
| setState(() { | ||
| _dampingRatio = value; | ||
| }); | ||
| }, | ||
| ), | ||
| ), | ||
| const Text('Damped (10)'), | ||
| ], | ||
| ), | ||
| const SizedBox(height: 8), | ||
| Wrap( | ||
| spacing: 8, | ||
| runSpacing: 8, | ||
| alignment: WrapAlignment.center, | ||
| children: [ | ||
| ElevatedButton( | ||
| onPressed: () => setState(() => _dampingRatio = 1), | ||
| child: const Text('Very Damped (1)'), | ||
| ), | ||
| ElevatedButton( | ||
| onPressed: () => setState(() => _dampingRatio = 2), | ||
| child: const Text('Damped (2)'), | ||
| ), | ||
| ElevatedButton( | ||
| onPressed: () => setState(() => _dampingRatio = 5), | ||
| child: const Text('Default (5)'), | ||
| ), | ||
| ElevatedButton( | ||
| onPressed: () => setState(() => _dampingRatio = 7), | ||
| child: const Text('Bouncy (4)'), | ||
| ), | ||
| ElevatedButton( | ||
| onPressed: () => setState(() => _dampingRatio = 10), | ||
| child: const Text('Very Bouncy (10)'), | ||
| ), | ||
| ], | ||
| ), | ||
| ], | ||
| ), | ||
| ), | ||
| Expanded( | ||
| child: FlutterMap( | ||
| options: MapOptions( | ||
| initialCenter: const LatLng(51.5, -0.09), | ||
| initialZoom: 11, | ||
| interactionOptions: InteractionOptions( | ||
| flags: InteractiveFlag.all, | ||
| flingAnimationDampingRatio: _dampingRatio, | ||
| ), | ||
| ), | ||
| children: [ | ||
| openStreetMapTileLayer, | ||
| Center( | ||
| child: Container( | ||
| padding: const EdgeInsets.all(8), | ||
| decoration: BoxDecoration( | ||
| color: Colors.white.withValues(alpha: 0.8), | ||
| borderRadius: BorderRadius.circular(4), | ||
| ), | ||
| child: const Text( | ||
| 'Drag and release to see the fling effect!', | ||
| style: TextStyle(fontWeight: FontWeight.bold), | ||
| ), | ||
| ), | ||
| ), | ||
| ], | ||
| ), | ||
| ), | ||
| ], | ||
| ), | ||
| ); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.