Download Flutter SDK, extract the "Flutter" folder and put somewhere on your machine https://flutter.dev/docs/get-started/install
Add path for 'location/flutter/bin'
# test |
Download Flutter SDK, extract the "Flutter" folder and put somewhere on your machine https://flutter.dev/docs/get-started/install
Add path for 'location/flutter/bin'
// iFrame mit Aspect-Ratio | |
.embed-responsive { | |
position: relative; | |
display: block; | |
height: 0; | |
padding: 0; | |
padding-bottom: 56.25%; | |
.embed-responsive-item, |
title | date | permalink | introText | introImage | tags | |
---|---|---|---|---|---|---|
Eierlikör |
2006-11-04 |
rezepte/eierlikoer.html |
Einfach ein schönes Geschenk. Aber auch zum sleber trinken verdammt lecker. |
eierlikoer |
|
--- | |
status: "wip" | |
handle: "table" | |
context: | |
tablehead: | |
- item: "AutorIn" | |
- item: "Titel" | |
- item: "Verlag" | |
rows: |
/* hide only visually */ | |
.sr-only:not(:focus):not(:active) { | |
width: 1px; | |
clip: rect(0 0 0 0); | |
clip-path: inset(50%); | |
height: 1px; | |
overflow: hidden; | |
position: absolute; | |
white-space: nowrap; | |
} |
<div id="app"> | |
<form> | |
<div class="input-group"> | |
<input type="text" class="form-control" placeholder="Buchtitel" aria-label="Buchtitel suchen" v-model="query" @keyup="search"> | |
<div class="input-group-append"><button class="btn btn-outline-primary" id="button">Suchen</button></div> | |
</div> | |
<div class="p-5 d-flex justify-content-center" v-if="!docs.length && query.length"><div class="spinner-border" role="status"><span class="sr-only">Loading...</span></div></div> | |
<div class="list-group" v-if="docs.length"> | |
<button v-for="doc in docs" type="button" class="list-group-item list-group-item-action">{{ doc.title }}</button> | |
</div> |
<div id="app"> | |
<form> | |
<label for="email">Email-Adresse</label> | |
<input type="email" required name="email" id="email" @keyup="validate" /> | |
<button id="submit" :disabled="disabled">Abschicken!</button> | |
</form> | |
</div> |