slight change to show more emails when search
This commit is contained in:
parent
b19005585d
commit
e278643629
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class _HomeScreenState extends State<HomeScreen> with TickerProviderStateMixin {
|
||||||
// ),
|
// ),
|
||||||
// );
|
// );
|
||||||
return FutureBuilder<List<SerializableMessage>>(
|
return FutureBuilder<List<SerializableMessage>>(
|
||||||
future: apiService.sonicSearch("INBOX", 10, 0, query),
|
future: apiService.sonicSearch("INBOX", 50, 0, query),
|
||||||
builder: (BuildContext context,
|
builder: (BuildContext context,
|
||||||
AsyncSnapshot<List<SerializableMessage>> snapshot) {
|
AsyncSnapshot<List<SerializableMessage>> snapshot) {
|
||||||
if (snapshot.connectionState == ConnectionState.waiting) {
|
if (snapshot.connectionState == ConnectionState.waiting) {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue