This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Screen to manage MAP and Description forms | |
import 'dart:collection'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_map_live1/ui/widgets/seller_input/input_map_seller.dart'; | |
import 'package:flutter_map_live1/ui/widgets/seller_input/input_description_seller.dart'; | |
import 'package:flutter_map_live1/ui/widgets/seller_input/input_upload_seller.dart'; | |
class StepperPage extends StatefulWidget { | |
StepperPage({Key? key, required this.title}) : super (key: key); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart' as http; | |
Future<User> createUser(String email) async { | |
final http.Response response = await http.post( | |
'http://10.0.11.157:8000/api/user', | |
headers: <String, String>{ |