Giter Club home page Giter Club logo

Comments (10)

benjamindean avatar benjamindean commented on September 24, 2024

What exactly is the problem? Doesn't it vibrate this way? It's quite a rare case, so vibrating indefinitely is not "officially" supported, but it's possible.

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

vibration works fine
but for me when the button is clicked
i want the vibration to last for one hour or more
how to implement this?

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

i am working on a alarm app:
when the alarm is on it shouble keep on vibrating for one hr or more
when the user click on off button the vibration should off
.
so how can i do that?

from flutter_vibration.

benjamindean avatar benjamindean commented on September 24, 2024

Well, you just set the duration to 1000 * 60 * 60. Or use the Duration class for that.

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

Thanks a lot!!great package by the way

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

i tried to
final dur = Duration(
days: 5,
hours: 23,
minutes: 59,
seconds: 59,
milliseconds: 999,
microseconds: 999,
);
RaisedButton(
child: Text('Vibrate for 1000ms'),
onPressed: () {
Vibration.vibrate(duration: 1000 * 60 * 60, );
},
),
but its not working!
and i did try Duration class for one hr its not working
child: Text('Vibrate for 1000ms'),
onPressed: () {
Vibration.vibrate(duration: 100 * 60 * 60, );
// Vibration.vibrate(duration: Duration.secondsPerMinute);
// Vibration.vibrate(duration:d1.inMinutes 10060*600);
Vibration.vibrate(duration:dur.inMinutes );

                },
              ),

from flutter_vibration.

benjamindean avatar benjamindean commented on September 24, 2024

Judging by your code you are passing minutes to the vibrate method. What happens when you run Vibration.vibrate(duration: 1000 * 60 * 60);?

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

it doesnt workk

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

it will not vibrate at all

from flutter_vibration.

vipuluthaiah avatar vipuluthaiah commented on September 24, 2024

RaisedButton(
child: Text('Vibrate for default 500ms'),
onPressed: () {
Vibration.vibrate(duration: 1000 * 60 * 60);
},
),

Vibrated for :10s0

from flutter_vibration.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.