Skip to content

Instantly share code, notes, and snippets.

@simoales
Last active December 21, 2022 10:03
Show Gist options
  • Save simoales/542d1011bf9dd99197c59d1de7baf6e4 to your computer and use it in GitHub Desktop.
Save simoales/542d1011bf9dd99197c59d1de7baf6e4 to your computer and use it in GitHub Desktop.
Starting code for flutter_secure_storage recipe
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.deepPurple,
),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final pwdController = TextEditingController();
String myPass = '';
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Path Provider')),
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
TextField(
controller: pwdController,
),
ElevatedButton(child: const Text('Save Value'), onPressed: () {}),
ElevatedButton(child: const Text('Read Value'), onPressed: () {}),
Text(myPass),
],
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment