water_fx

Creator: coderz1093

Last updated:

0 purchases

water_fx Image
water_fx Images
Add to Cart

Description:

water fx

A library for adding water effects to Flutter apps.
Wrap any widget with a WaterFXContainer, and it will appear as if it is under
water when touched. You will see water ripples moving across the surface of
your widget. The image below is an animated screenshot of a Flutter app that is
using the WaterFX library. This effect can be applied to any Flutter widget;
image, video, button, table etc. Touches can be applied by the pointer, the
finger, or by code. E.g. you can use code to simulate rain drops falling on
your widget.

Check out the WaterFX web page - www.jimmorrison101.com/water_fx/
Getting started #
To use this plugin, add water_fx as a dependency in your pubspec.yaml file.
Examples #
Example with an image:
import 'package:water_fx/water_fx.dart';
// ...

@override
Widget build(BuildContext context) => MaterialApp(
home: Center(
child: WaterFXContainer.simpleImageInstanceForPointer(
image: _sourceImage, // _sourceImage is a dart:ui.Image.
),
),
);
copied to clipboard
Example with a widget.
import 'package:water_fx/water_fx.dart';
// ...

@override
Widget build(BuildContext context) => MaterialApp(
home: Center(
child: WaterFXContainer.simpleWidgetInstanceForPointer(
child: _child, // _child is a Widget.
),
),
);
copied to clipboard
Additional information #
You can find out more about WaterFX here: www.jimmorrison101.com/water_fx
The original idea for WaterFX is based on an algorithm by Neil Wallis: https://www.neilwallis.com/index.php

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.