mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-10-31 10:14:50 +00:00 
			
		
		
		
	Finish to fix deprecation warnings
This commit is contained in:
		| @@ -72,21 +72,23 @@ class _FriendshipStatusWidgetState extends State<FriendshipStatusWidget> { | ||||
|     if (widget.status.receivedRequest) { | ||||
|       return Column( | ||||
|         children: <Widget>[ | ||||
|           RaisedButton( | ||||
|           ElevatedButton( | ||||
|             child: Text( | ||||
|               tr("Accept request").toUpperCase(), | ||||
|               style: WhiteTextColorStyle, | ||||
|             ), | ||||
|             color: Colors.green, | ||||
|             style: ButtonStyle( | ||||
|                 backgroundColor: MaterialStateProperty.all(Colors.green)), | ||||
|             onPressed: () => executeRequest( | ||||
|                 () => _friendsHelper.respondRequest(friendID, true)), | ||||
|           ), | ||||
|           RaisedButton( | ||||
|           ElevatedButton( | ||||
|             child: Text( | ||||
|               tr("Reject request").toUpperCase(), | ||||
|               style: WhiteTextColorStyle, | ||||
|             ), | ||||
|             color: Colors.red, | ||||
|             style: ButtonStyle( | ||||
|                 backgroundColor: MaterialStateProperty.all(Colors.red)), | ||||
|             onPressed: () => executeRequest( | ||||
|                 () => _friendsHelper.respondRequest(friendID, false)), | ||||
|           ) | ||||
|   | ||||
| @@ -20,9 +20,7 @@ import 'package:image_picker/image_picker.dart'; | ||||
| /// @author Pierre HUBERT | ||||
|  | ||||
| const _ActiveButtonsColor = Colors.blue; | ||||
| const _ActiveButtonsTextColor = Colors.white; | ||||
| const _InactiveButtonsColor = Colors.grey; | ||||
| const _InactiveButtonsTextColor = Colors.black; | ||||
|  | ||||
| class PostCreateFormWidget extends StatefulWidget { | ||||
|   final PostTarget postTarget; | ||||
| @@ -192,14 +190,9 @@ class _PostCreateFormWidgetState extends State<PostCreateFormWidget> { | ||||
|                   // Submit post button | ||||
|                   _isCreating | ||||
|                       ? Container() | ||||
|                       : FlatButton( | ||||
|                       : ElevatedButton( | ||||
|                           child: Text(tr("Send").toUpperCase()), | ||||
|                           onPressed: canSubmitForm ? _submitForm : null, | ||||
|                           color: _ActiveButtonsColor, | ||||
|                           textColor: _ActiveButtonsTextColor, | ||||
|                           disabledColor: _InactiveButtonsColor, | ||||
|                           disabledTextColor: _InactiveButtonsTextColor, | ||||
|                         ), | ||||
|                           onPressed: canSubmitForm ? _submitForm : null), | ||||
|                 ], | ||||
|               ), | ||||
|             ) | ||||
|   | ||||
| @@ -99,8 +99,7 @@ class _ConversationWindowState extends SafeState<ConversationWindow> { | ||||
|         isCollapsed: _collapsed, | ||||
|         body: buildErrorCard(tr("Could not load conversation information!"), | ||||
|             actions: [ | ||||
|               FlatButton( | ||||
|                 textColor: Colors.white, | ||||
|               ElevatedButton( | ||||
|                 onPressed: _refresh, | ||||
|                 child: Text(tr("Try again").toUpperCase()), | ||||
|               ) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user