Home > Blockchain >  Creating messenger Inkwell
Creating messenger Inkwell

Time:10-31

I was creating Inkwell in flutter, but that is not the same as the messenger. can anyone please create this for me in flutter?

enter image description here

what I create was too fast.

CodePudding user response:

If you would like a slower ripple effect, then you have to change splashFactory property in your MaterialApp theme from InkSplash.splashFactory (default) to InkRipple.splashFactory. InkRipple's splash looks more like native.

CodePudding user response:

You can use third party package splash alternatives from https://pub.dev/packages/splash/example . WaveSplash from that package maybe helpful for your need

WaveSplash.customSplashFactory(strokeWidth: 30, blurStrength: 5)

just play around with those figures.

Remember to import the package:

import 'package:splash/splash.dart';
  • Related