Minor fixes
This commit is contained in:
parent
f721045d00
commit
76596cafb4
6 changed files with 43 additions and 20 deletions
|
|
@ -51,7 +51,16 @@ class MatrixState extends State<Matrix> {
|
|||
FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
|
||||
FlutterLocalNotificationsPlugin _flutterLocalNotificationsPlugin =
|
||||
FlutterLocalNotificationsPlugin();
|
||||
Map<String, dynamic> shareContent;
|
||||
Map<String, dynamic> get shareContent => _shareContent;
|
||||
set shareContent(Map<String, dynamic> content) {
|
||||
_shareContent = content;
|
||||
onShareContentChanged.add(_shareContent);
|
||||
}
|
||||
|
||||
Map<String, dynamic> _shareContent;
|
||||
|
||||
final StreamController<Map<String, dynamic>> onShareContentChanged =
|
||||
StreamController.broadcast();
|
||||
|
||||
String activeRoomId;
|
||||
File wallpaper;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue