-
Notifications
You must be signed in to change notification settings - Fork 0
FLUT-915954 - [Others] Getting started sample for SfChat #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
lib/main.dart
Outdated
} | ||
} | ||
|
||
ChatComposer _buildChatComposer() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed.
lib/main.dart
Outdated
); | ||
} | ||
|
||
Widget _buildSendButton() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed. It used default action button with onPressed method to update message.
lib/main.dart
Outdated
)); | ||
} | ||
|
||
class ChatScreen extends StatefulWidget { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ChatScreen => ChatWidget
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed.
lib/main.dart
Outdated
ChatMessage( | ||
text: text, | ||
time: DateTime.now(), | ||
author: const ChatAuthor(id: 'User', name: 'Anitha'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Give id and name like this https://help.syncfusion.com/flutter/chat/getting-started#initialize-chat-widget
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fine
Added sample for getting started with SfChat.
