Last active
January 28, 2024 19:25
-
-
Save emostar/28154579b3ade2c6317d68016eb17d04 to your computer and use it in GitHub Desktop.
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'; | |
class NewRecording extends StatefulWidget { | |
@override | |
_NewRecordingState createState() => _NewRecordingState(); | |
} | |
class _NewRecordingState extends State<NewRecording> { | |
@override | |
void initState() { | |
super.initState(); | |
} | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text('New Recording'), | |
), | |
body: Center( | |
child: Text('Welcome to the new screen!'), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment