13 lines
245 B
Dart
13 lines
245 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
void main() => runApp(const Noise());
|
||
|
|
||
|
class Noise extends StatelessWidget {
|
||
|
const Noise({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container();
|
||
|
}
|
||
|
}
|