You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fil filter = CustomFilter.sql(
where: '''
${CustomColumns.android.width} IS NOT NULL
''',
orderBy: [OrderByItem.desc(CustomColumns.android.dateTaken)],
);
And it was much better than sorting by creationTime. However i was not able to ann date filter.
filter = CustomFilter.sql(
where: '''
${CustomColumns.android.width} IS NOT NULL
AND ${CustomColumns.android.dateTaken} >= ${CustomColumns.utils.convertDateTimeToSql(dateRange.start)}
AND ${CustomColumns.android.dateTaken} <= ${CustomColumns.utils.convertDateTimeToSql(dateRange.end)}
''',
orderBy: [OrderByItem.desc(CustomColumns.android.dateTaken)],
);
return filter;
}
it seems like "convertDateTimeToSql" doesn't work with dateTaken.
I want to show the "correct" Datetime of the AssetEntity's but AssetEntity doesn't hold any date Taken Information as far as i can tell
Version
3.5.0
Platforms
Android
Device Model
meizu 20 pro
flutter info
How to reproduce?
在example示例里,custom filter example -> Advanced Custom Filter中,打开相册「最近」,我看了下规则是按照创建时间排序,
但是呢,输出的图像却感觉像是按照id排序的,并未像预期那样,是否需要其他设置项呢?
Logs
No response
Example code (optional)
No response
Contact
No response
The text was updated successfully, but these errors were encountered: