1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2026-08-25 01:05:36 +00:00
Files
flutter-examples/save_data_locally_with_sqlite/lib/screens/homescreen/homescreen.dart
Nishant Srivastava 5c53498119 refactor: standardize Dart and Android config across all 54 apps
- Bump all apps to sdk >=3.0.0 <4.0.0 and add flutter_lints + a shared
  analysis_options.yaml to every app (flutter analyze is now green repo-wide)
- Fix real compile errors in firebase_google_authentication and image_editor,
  plus deprecated APIs (Matrix4, SvgPicture.color, textScaleFactor),
  missing async 'mounted' guards, and misc lints via dart fix + manual fixes
- Align pubspec 'name' with each folder and Android namespace/applicationId
  with the documented github.nisrulz.* convention
- Convert bmi_calculator from a legacy Flutter module to a standard app
  with a proper android/ scaffold; fix missing android:exported in launcher
  manifests across 22 apps so all Android builds pass
- Untrack generated build files (GeneratedPluginRegistrant,
  .flutter-plugins-dependencies) and ignore them
2026-08-17 17:26:39 +02:00

139 lines
4.6 KiB
Dart

import 'package:flutter/material.dart';
import 'package:save_data_locally_with_sqlite/database/database_queries.dart';
import 'package:save_data_locally_with_sqlite/screens/homescreen/widgets/note_container.dart';
class HomeScreen extends StatefulWidget {
const HomeScreen({super.key});
@override
_HomeScreenState createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
String note = '';
List<Map> notes = [];
TextEditingController textEditingController = TextEditingController();
void AddDatatoDatabase(String note) async {
String datetime =
'${DateTime.now().day}-${DateTime.now().month}-${DateTime.now().year} ${DateTime.now().hour}:${DateTime.now().minute}:${DateTime.now().second}';
await InsertData(note, datetime);
UpdateNotesList();
}
void DeleteDataFromDatabase(String datetime) async {
print(datetime);
await DeleteData(datetime);
UpdateNotesList();
}
void UpdateNotesList() async {
notes = await GetData();
print(notes);
setState(() {});
}
@override
void initState() {
super.initState();
print('init');
UpdateNotesList();
}
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
appBar: AppBar(
title: Container(
child: Text('Save Data locally using sqlite'),
),
),
body: Container(
height: double.infinity,
width: double.infinity,
color: Colors.white,
child: Column(
children: [
Container(
height: 140,
width: 350,
margin: EdgeInsets.only(top: 20),
child: Column(
children: [
Container(
child: TextField(
controller: textEditingController,
onChanged: (text) {
note = text;
},
maxLines: 2,
decoration: InputDecoration(
hintText: 'Enter Text',
border: OutlineInputBorder(
borderRadius:
BorderRadius.all(Radius.circular(32.0)),
),
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.lightBlueAccent, width: 1.0),
borderRadius:
BorderRadius.all(Radius.circular(32.0)),
),
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.lightBlueAccent, width: 2.0),
borderRadius:
BorderRadius.all(Radius.circular(32.0)),
),
),
),
),
GestureDetector(
onTap: () {
AddDatatoDatabase(note);
textEditingController.clear();
note = '';
},
child: Container(
width: 60,
height: 30,
alignment: Alignment.center,
margin: EdgeInsets.only(top: 10),
decoration: BoxDecoration(
color: Colors.blue,
borderRadius: BorderRadius.circular(10)),
child: Text(
'Add',
style: TextStyle(
color: Colors.white,
),
),
),
)
],
),
),
Expanded(
child: ListView.builder(
itemBuilder: (context, index) {
return GestureDetector(
onLongPress: () {
DeleteDataFromDatabase(notes[index]['datetime']);
},
child: NoteContainer(
text: notes[index]['note'],
datetime: notes[index]['datetime'],
),
);
},
itemCount: notes.length,
),
),
],
),
),
),
);
}
}