Skip to content

glorylab/wave

Folders and files

NameName
Last commit message
Last commit date
Mar 11, 2024
Jun 14, 2022
Feb 22, 2024
Feb 22, 2024
Feb 22, 2024
Jun 6, 2022
Nov 28, 2018
Jun 14, 2022
Dec 3, 2018
Nov 28, 2018
Dec 4, 2018
Aug 22, 2023
Mar 27, 2023
Mar 27, 2023
Nov 28, 2018

Repository files navigation

WAVE

Flutter package: tm - WAVE


Awesome: Flutter Pub GitHub

A Flutter package for displaying waves.

Demo

Platform Branch URL
Web master wave.glorylab.xyz
Web develop dev.wave.glorylab.xyz

Getting Started

static const _backgroundColor = Color(0xFFF15BB5);

static const _colors = [
    Color(0xFFFEE440),
    Color(0xFF00BBF9),
];

static const _durations = [
    5000,
    4000,
];

static const _heightPercentages = [
    0.65,
    0.66,
];

WaveWidget(
    config: CustomConfig(
        colors: _colors,
        durations: _durations,
        heightPercentages: _heightPercentages,
    ),
    backgroundColor: _backgroundColor,
    size: Size(double.infinity, double.infinity),
    waveAmplitude: 0,
),