mirror of
				https://gitlab.com/famedly/fluffychat.git
				synced 2025-11-04 06:17:26 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			957 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			957 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:famedlysdk/famedlysdk.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
 | 
						|
import '../matrix.dart';
 | 
						|
 | 
						|
class RedactMessageDialog extends StatelessWidget {
 | 
						|
  final Event event;
 | 
						|
  const RedactMessageDialog(this.event);
 | 
						|
 | 
						|
  void removeAction(BuildContext context) {
 | 
						|
    Matrix.of(context).tryRequestWithLoadingDialog(event.redact());
 | 
						|
    Navigator.of(context).pop();
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) {
 | 
						|
    return AlertDialog(
 | 
						|
      title: Text("Message will be removed for all participants"),
 | 
						|
      actions: <Widget>[
 | 
						|
        FlatButton(
 | 
						|
          child: Text("Close".toUpperCase(),
 | 
						|
              style: TextStyle(color: Colors.blueGrey)),
 | 
						|
          onPressed: () => Navigator.of(context).pop(),
 | 
						|
        ),
 | 
						|
        FlatButton(
 | 
						|
          child: Text(
 | 
						|
            "Remove".toUpperCase(),
 | 
						|
            style: TextStyle(color: Colors.red),
 | 
						|
          ),
 | 
						|
          onPressed: () => removeAction(context),
 | 
						|
        ),
 | 
						|
      ],
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |