romantic_shader_widget 1.0.0 copy "romantic_shader_widget: ^1.0.0" to clipboard
romantic_shader_widget: ^1.0.0 copied to clipboard

A Flutter package for rendering GLSL fragment shaders and a built-in Dart CLI for converting Shadertoy-style GLSL into Flutter-compatible fragment shaders.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'shader_demo.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Generic Shader Widget Demo App',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const ShaderDemo(),
    );
  }
}
0
likes
160
points
28
downloads

Documentation

API reference

Publisher

verified publisherromanticdeveloper.com

Weekly Downloads

A Flutter package for rendering GLSL fragment shaders and a built-in Dart CLI for converting Shadertoy-style GLSL into Flutter-compatible fragment shaders.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

args, flutter, http

More

Packages that depend on romantic_shader_widget