Skip to content

Commit

Permalink
example: simple manual step that performs insert and query.
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Dec 30, 2024
1 parent d114a12 commit e38f7ce
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ class _ManualTestPageState extends State<ManualTestPage> {
SqfMenuItem('openDatabase', () async {
await _openDatabase();
}, summary: 'Open the database'),
SqfMenuItem('transaction add and query', () async {
await _addAndQuery();
}, summary: 'open/create table/add/query'),
SqfMenuItem('transaction add and query and pause', () async {
await _addAndQuery(msDelay: 5000);
}, summary: 'open/create table/add/query/pause'),
Expand Down

0 comments on commit e38f7ce

Please sign in to comment.