Skip to content

Instantly share code, notes, and snippets.

@emostar
Last active January 28, 2024 19:25
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 emostar/28154579b3ade2c6317d68016eb17d04 to your computer and use it in GitHub Desktop.
Save emostar/28154579b3ade2c6317d68016eb17d04 to your computer and use it in GitHub Desktop.
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