-
-
Notifications
You must be signed in to change notification settings - Fork 894
Mouse drag behaviour and fling damping #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
Open
ben-milanko
wants to merge
5
commits into
fleaflet:master
Choose a base branch
from
ben-milanko:fix/fling-rebound
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 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 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't match the default value in the constructor (5.0).