Javascript XML: It's a Javascript syntax extension and is compiled to Javascript with React Elements using Babel.
examples:
const element = <h1>Hello, World!</h1>
Future<void> main() async { | |
// List/Iterable: | |
var array = [1,2,3,4]; | |
array.forEach(print); | |
for(var item in array) { | |
print(item); | |
} |
UI zum testen: https://overpass-turbo.eu/
Map Features Docs: https://wiki.openstreetmap.org/wiki/Map_features
GeoJSON Preview: https://geojson.io/#map=2/0/20
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
enum TimerState { | |
eric('stopped'), | |
idle('stopped'), | |
running('running'), | |
paused('paused'), | |
finished('finished'); | |
final String serializeName; | |
const TimerState(this.serializeName); |
dockerfile | |
# Use a Python base image matching your project's Python version | |
FROM python:3.9 | |
# Set the working directory to /app | |
WORKDIR /app | |
# Copy the requirements file into the container | |
COPY requirements.txt . |
import 'package:flutter/material.dart'; | |
class EditorScreen<T> extends StatefulWidget { | |
final double height; | |
final double width; | |
final Widget Function(BuildContext context, T? data) builder; | |
const EditorScreen({ | |
Key? key, | |
this.height = 200, |
import 'package:cron_consume_microservice/cron_consume_microservice.dart' | |
as cron_consume_microservice; | |
import 'dart:convert'; | |
import 'dart:io'; | |
import 'package:shelf/shelf.dart' as shelf; | |
import 'package:shelf/shelf_io.dart' as io; | |
import 'package:shelf_router/shelf_router.dart'; | |
void main(List<String> arguments) { |