From 0acb59513d2fdd5bf7916348ff0cf0644719bf9d Mon Sep 17 00:00:00 2001 From: Specoolazius Date: Wed, 6 Oct 2021 16:27:27 +0200 Subject: [PATCH] text changes --- README.md | 1 + lib/chat_buttons.dart | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1754bb2..d531c78 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ This project is still under development! ## Branch: This branch is the UI of the Noise application and written in Dart/Flutter +Note: This Branch is optimized for Android devices ## Contact: diff --git a/lib/chat_buttons.dart b/lib/chat_buttons.dart index 07640dd..51c5ae9 100644 --- a/lib/chat_buttons.dart +++ b/lib/chat_buttons.dart @@ -2,14 +2,18 @@ import 'dart:ui'; import 'package:flutter/material.dart'; 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 Widget build(BuildContext context) { - - return Container( - + color: Colors.transparent, ); }