Home
Softono

Wave

Open source MIT Dart
1.1K
Stars
96
Forks
19
Issues
8
Watchers
2 years
Last Commit

 About Wave

Wave - The Software as a Service Starter Kit, designed to help you build the SAAS of your dreams 🚀 💰

Platforms

Web Self-hosted iOS Android

Languages

TypeScript Dart CSS

Need Help Installing Wave?

We provide expert installation service for this software. Our team will install, configure, and secure Wave on your server. plans start at just $30.

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,
),