skip to Main Content

How can I upgrade a "RaisedButton" to "ElevatedButton" in Flutter?

I got the following code and want to make it work: RaisedButton( child: Text(_authMode == AuthMode.Login ? 'LOGIN' : 'SIGN UP'), onPressed: _submit, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(30), ), padding: EdgeInsets.symmetric(horizontal: 30.0, vertical: 8.0), color: Theme.of(context).primaryColor, textColor: Theme.of(context).primaryTextTheme.button.color, ), I tried…

VIEW QUESTION

return multiple values from dropdown in flutter

I have this custom dropDown button and I want to get two values when I select one value from the list. Here is the custom dropdown button Widget customJsonDropDown(List? jsonList, String? value, void onChange(val)) { return Container( decoration: BoxDecoration( borderRadius:…

VIEW QUESTION
Back To Top
Search