skip to Main Content

How to put button under an image? Flutter

Hello guys im new in flutter and i need help with my app, to put a button under an image in my app main menu, here is my code so far i build based on https://docs.flutter.dev/development/ui/layout/tutorial import 'package:flutter/material.dart'; import 'package:get/get_core/src/get_main.dart';…

VIEW QUESTION

Flutter Error: The method 'jsonEncode' is not defined

I am attempting to create a put request to an API using Flutter using the following function: Future<http.Response> login(String username, String password) { return http.put( Uri.parse('apiurl'), headers: <String, String>{ 'Content-Type': 'application/json; charset=UTF-8', }, body: jsonEncode( <String, String>{'username': username, 'password': password}));…

VIEW QUESTION
Back To Top
Search