Answers for "flutter longpress vibration"

0

flutter longpress vibration

import 'package:flutter/services.dart';

class MyVibrateButton extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: GestureDetector(
        onLongPress: () => HapticFeedback.vibrate(),
        child: Container(color: Colors.blue, width: 100.0, height: 50.0),
      ),
    );
  }
}
Posted by: Guest on September-05-2020

Code answers related to "flutter longpress vibration"

Code answers related to "Dart"

Browse Popular Code Answers by Language