File tree Expand file tree Collapse file tree 5 files changed +174
-148
lines changed
statistics_screen/widgets Expand file tree Collapse file tree 5 files changed +174
-148
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,9 @@ void main() async {
4444 _setAndroidConfig ();
4545
4646 HydratedBloc .storage = await HydratedStorage .build (
47- storageDirectory: await getApplicationDocumentsDirectory (),
47+ storageDirectory: HydratedStorageDirectory (
48+ (await getApplicationDocumentsDirectory ()).path,
49+ ),
4850 );
4951
5052 appDocumentsDirectory = await getApplicationDocumentsDirectory ();
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ class _BooksListState extends State<BooksList>
101101 'tag_${widget .listNumber }_${widget .books [index ].id }' ;
102102 Color ? color = multiSelectMode &&
103103 widget.selectedBookIds! .contains (widget.books[index].id)
104- ? Theme .of (context).colorScheme.secondaryContainer
105- : null ;
104+ ? Theme .of (context).colorScheme.tertiaryContainer
105+ : Theme . of (context).colorScheme.secondaryContainer ;
106106 return BookCard (
107107 book: widget.books[index],
108108 heroTag: heroTag,
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ class ReadStatsByMonth extends StatelessWidget {
108108 return (value % meta.appliedInterval == 0 )
109109 ? Builder (builder: (context) {
110110 return SideTitleWidget (
111- axisSide : meta.axisSide ,
111+ meta : meta,
112112 space: 8 ,
113113 child: Text (
114114 text,
You can’t perform that action at this time.
0 commit comments