-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
50 lines (40 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="scaffolded-by" content="https://github.com/google/stagehand">
<title>json2builtval</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico">
<script defer src="main.dart.js"></script>
<style>
.inline-div {
display:inline-block;
width: 100%;
height: 100%;
margin: 0 auto;
}
.inline-txtarea {
width: 48%;
height: 90vh;
border : 2px solid grey;
margin: 0 auto;
}
</style>
</head>
<body>
<div style="margin-left: 24px;">
<h2 style="display: inline-block;">Json to Dart built_value class converter</h2>
Root class name: <input id="root_class_name" type="text" value="Root"></input>
<input id="convert" type="submit" value="Convert"></input>
</div>
<div id="texts" class="inline-div">
<center>
<textarea id="input_text" class="inline-txtarea"></textarea>
<textarea id="output_text" class="inline-txtarea"></textarea>
</center>
</div>
</body>
</html>