Skip to content

Instantly share code, notes, and snippets.

@mmanflori
Created February 17, 2019 10:14
Show Gist options
  • Save mmanflori/4d57c0f7f6331857164b5662e5340611 to your computer and use it in GitHub Desktop.
Save mmanflori/4d57c0f7f6331857164b5662e5340611 to your computer and use it in GitHub Desktop.
async Beispiel 1
import 'package:flutter/material.dart';
void main() => runApp(AsyncBeispiel());
class AsyncBeispiel extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: HauptSeite(),
);
}
}
class HauptSeite extends StatefulWidget {
@override
_HauptSeiteState createState() => _HauptSeiteState();
}
class _HauptSeiteState extends State<HauptSeite> {
@override
String zeichenKette;
textVomServer();
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Async Beispiel"),
),
body: Container(
child: Center(
child: Text(
"Hier steht der Text"
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment