Created
November 10, 2021 00:46
-
-
Save codetricity/906a4e7cc97f6cf3da1e5b02a5fcaa88 to your computer and use it in GitHub Desktop.
Oppkey THETA ATK Tutorial - Getting Started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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