- Having an account in npmjs.com
- Having an account github.com
make a directory for your module:
mkdir my-module`
navigate it:
| import 'package:flutter/material.dart'; | |
| import '../../components/my_flat_button.dart'; | |
| import 'question2.dart'; | |
| class Question1 extends StatefulWidget { | |
| @override | |
| Question1State createState() { | |
| return Question1State(); | |
| } |
| <?php | |
| header('Content-Type: application/json'); | |
| $data = json_decode(file_get_contents('php://input'), true); | |
| if( !is_null($data) ) { | |
| echo json_encode($data); | |
| } | |
| $input_data = file_get_contents("php://stdin"); |