All Projects → i-protoss → Wave

i-protoss / Wave

Licence: mit
Widget for displaying waves with custom color, duration, floating and blur effects.

Programming Languages

dart
5743 projects
dartlang
94 projects

Projects that are alternatives of or similar to Wave

wavy
A spectral ocean wave modeling framework
Stars: ✭ 15 (-97.3%)
Mutual labels:  wave
audio-metadata
A library for reading and, in the future, writing audio metadata. https://audio-metadata.readthedocs.io/
Stars: ✭ 41 (-92.61%)
Mutual labels:  wave
LCWaveView
Wave effects made using CADisplay and CAShapeLayer.
Stars: ✭ 17 (-96.94%)
Mutual labels:  wave
Jamais-Vu
Audio Fingerprinting and Recognition in Python using NVidia's CUDA
Stars: ✭ 24 (-95.68%)
Mutual labels:  wave
easywave
Easy WAVE file handling for Nim
Stars: ✭ 18 (-96.76%)
Mutual labels:  wave
wave
Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams 🚀 💰
Stars: ✭ 3,646 (+556.94%)
Mutual labels:  wave
SwiftyWave
Siri Waves View in Swift
Stars: ✭ 66 (-88.11%)
Mutual labels:  wave
Nfx
C# Server UNISTACK framework [MOVED]
Stars: ✭ 379 (-31.71%)
Mutual labels:  wave
waveGeneral
音频解析标注框架
Stars: ✭ 20 (-96.4%)
Mutual labels:  wave
WaveLabelDemo
波浪经过文字,文字改变颜色。Waves pass through words, and words change colours.
Stars: ✭ 58 (-89.55%)
Mutual labels:  wave
liquid button
Liquify your buttons, web demo at website
Stars: ✭ 18 (-96.76%)
Mutual labels:  wave
WaveProp in MATLAB
Single-file implementations of 2D and 3D acoustic and elastic wave propagation in time domain using finite-differences(FDTD). Simple formulation and implementation
Stars: ✭ 39 (-92.97%)
Mutual labels:  wave
SIRIWaveView
Siri like wave view for android
Stars: ✭ 65 (-88.29%)
Mutual labels:  wave
ARD-simulator
3D sound propagation simulator using adaptive rectangular decomposition method.
Stars: ✭ 21 (-96.22%)
Mutual labels:  wave
Hgrippleradarview
A beautiful radar view to show nearby items (users, restaurants, ...) with ripple animation, fully customizable
Stars: ✭ 309 (-44.32%)
Mutual labels:  wave
react-native-art-wave
A concise water wave animation process view write by React Native Art.
Stars: ✭ 45 (-91.89%)
Mutual labels:  wave
Planeverb
Project Planeverb is a CPU based real-time wave-based acoustics engine for games. It comes with an integration with the Unity Engine.
Stars: ✭ 22 (-96.04%)
Mutual labels:  wave
Romplayer
AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player
Stars: ✭ 445 (-19.82%)
Mutual labels:  wave
Wxwaveview
Add smooth water waves to your views.
Stars: ✭ 348 (-37.3%)
Mutual labels:  wave
VENTOS Public
VEhicular NeTwork Open Simulator (VENTOS)
Stars: ✭ 46 (-91.71%)
Mutual labels:  wave

Wave

Awesome: Flutter pub package GitHub

Widget for displaying waves with custom color, duration, floating and blur effects.

Getting Started

WaveWidget(
    config: CustomConfig(
        gradients: [
            [Colors.red, Color(0xEEF44336)],
            [Colors.red[800], Color(0x77E57373)],
            [Colors.orange, Color(0x66FF9800)],
            [Colors.yellow, Color(0x55FFEB3B)]
        ],
        durations: [35000, 19440, 10800, 6000],
        heightPercentages: [0.20, 0.23, 0.25, 0.30],
        blur: MaskFilter.blur(BlurStyle.solid, 10),
        gradientBegin: Alignment.bottomLeft,
        gradientEnd: Alignment.topRight,
    ),
    colors: [
        Colors.white70,
        Colors.white54,
        Colors.white30,
        Colors.white24,
    ],
    durations: [
        32000,
        21000,
        18000,
        5000,
    ],
    waveAmplitude: 0,
    heightPercentages: [0.25, 0.26, 0.28, 0.31],
    backgroundImage: DecorationImage(
        image: NetworkImage(
            'https://images.unsplash.com/photo-1600107363560-a2a891080c31?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=672&q=80',
        ),
        fit: BoxFit.cover,
        colorFilter:
            ColorFilter.mode(Colors.white, BlendMode.softLight),
    ),
    size: Size(
        double.infinity,
        double.infinity,
    ),
),

Preview

Normal

demo

Solid Blur

demo

Inner Blur

demo

Outer Blur

demo

Normal Blur

demo

GIF

demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].