text changes
This commit is contained in:
parent
a627e34876
commit
0acb59513d
@ -6,6 +6,7 @@ This project is still under development!
|
|||||||
|
|
||||||
## Branch:
|
## Branch:
|
||||||
This branch is the UI of the Noise application and written in Dart/Flutter
|
This branch is the UI of the Noise application and written in Dart/Flutter
|
||||||
|
Note: This Branch is optimized for Android devices
|
||||||
|
|
||||||
## Contact:
|
## Contact:
|
||||||
|
|
||||||
|
@ -2,14 +2,18 @@ import 'dart:ui';
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class ChatButton extends StatelessWidget {
|
class ChatButton extends StatelessWidget {
|
||||||
const ChatButton({Key? key}) : super(key: key);
|
// const ChatButton({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
// the chat the button leads to
|
||||||
|
final _destination = null;
|
||||||
|
final _name = '';
|
||||||
|
// delete maybe, depending on where the application gets the last message
|
||||||
|
final _last_message = '';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
||||||
|
|
||||||
return Container(
|
return Container(
|
||||||
|
color: Colors.transparent,
|
||||||
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user