shady 0.0.1
shady: ^0.0.1 copied to clipboard
Trying to make it easier to work with GLSL shaders in Flutter.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:shady_example/shady_playground.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Shady example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const Material(
child: ShadyPlayground(),
),
);
}
}