1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00

simple_shader: Clean up shaders/simple.frag, rebuild runners (#1715)

This commit is contained in:
Brett Morgan
2023-03-31 08:37:23 +10:00
committed by GitHub
parent a828c09e18
commit e3ca775b27
24 changed files with 433 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:simple_shader/main.dart';
void main() {
testWidgets('Smoke test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
});
}