basic working Flutter/Dart application
This commit is contained in:
17
lib/chat_buttons.dart
Normal file
17
lib/chat_buttons.dart
Normal 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
12
lib/main.dart
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user