Skip to content

Instantly share code, notes, and snippets.

@codetricity
Created November 10, 2021 00:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codetricity/906a4e7cc97f6cf3da1e5b02a5fcaa88 to your computer and use it in GitHub Desktop.
Save codetricity/906a4e7cc97f6cf3da1e5b02a5fcaa88 to your computer and use it in GitHub Desktop.
Oppkey THETA ATK Tutorial - Getting Started
import 'package:flutter/material.dart';
import 'package:thetaf/thetaf.dart';
void main() {
runApp(const AtkTutorial());
}
class AtkTutorial extends StatelessWidget {
const AtkTutorial({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: ThetaWindow(
child: Column(
children: const [
ResponseWindow(
flex: 5,
),
InfoButton(),
StateButton(),
TakePictureButton(),
],
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment