Skip to content

Pub-Dev/Flutter-GyroscopeWidget

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Flutter Gyroscope Widget!

Hey guys!

This library will allow you to move a little bit your widgets when you rotate your mobile phone.

Getting Start

add in your pubspec.yaml

dependencies:
  gyroscope_widget: ^1.0.0

in your dart file, you can use like that.

Widget build(BuildContext context) {
	return Scaffold(
		body: Container(
			width: double.infinity,
			height: double.infinity,
			child: GyroscopeWidget(
				scaleMargin: 0.2,
				child: Image.network('https://picsum.photos/250?image=10',
					height: double.infinity,
					width: double.infinity,
					fit: BoxFit.fill,
				),
			),
		),
	);
}

Example

Links

Flutter Package

About

It is a widget to move a little bit when you rotate your mobile phone.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published