basic working Flutter/Dart application

This commit is contained in:
2021-10-04 14:35:48 +02:00
parent a1e57f3d4c
commit f87743af3b
88 changed files with 2931 additions and 0 deletions

17
lib/chat_buttons.dart Normal file
View File

@@ -0,0 +1,17 @@
import 'dart:ui';
import 'package:flutter/material.dart';
class ChatButton extends StatelessWidget {
const ChatButton({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
);
}
}

12
lib/main.dart Normal file
View File

@@ -0,0 +1,12 @@
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();
}
}