22 lines
465 B
Dart
22 lines
465 B
Dart
import 'dart:ui';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class ChatButton extends StatelessWidget {
|
|
// 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,
|
|
|
|
);
|
|
}
|
|
}
|
|
|