mirror of
https://github.com/stonega/tsacdop
synced 2025-02-21 14:01:01 +01:00
Remove asset image, peformance boost.
This commit is contained in:
parent
d5295db753
commit
c4bf7fce60
@ -7,6 +7,7 @@ import 'package:flutter/material.dart' hide NestedScrollView, showSearch;
|
||||
import 'package:flutter/scheduler.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:fluttertoast/fluttertoast.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
import 'package:line_icons/line_icons.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:tuple/tuple.dart';
|
||||
@ -167,13 +168,11 @@ class _HomeState extends State<Home> with SingleTickerProviderStateMixin {
|
||||
: settings.setTheme =
|
||||
ThemeMode.light
|
||||
},
|
||||
child: Image(
|
||||
image: Theme.of(context).brightness ==
|
||||
Brightness.light
|
||||
? AssetImage('assets/text.png')
|
||||
: AssetImage(
|
||||
'assets/text_light.png'),
|
||||
height: 30,
|
||||
child: Text(
|
||||
'Tsacdop',
|
||||
style: GoogleFonts.quicksand(
|
||||
color: context.accentColor,
|
||||
textStyle: TextStyle(fontSize: 25)),
|
||||
),
|
||||
),
|
||||
featureDiscoveryOverlay(context,
|
||||
|
@ -9,6 +9,7 @@ import 'package:flutter/material.dart' hide SearchDelegate;
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_html/flutter_html.dart';
|
||||
import 'package:fluttertoast/fluttertoast.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:webfeed/webfeed.dart';
|
||||
|
||||
@ -546,48 +547,50 @@ class __ListenNotesSearchState extends State<_ListenNotesSearch> {
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 10.0, bottom: 20.0),
|
||||
child: OutlineButton(
|
||||
highlightedBorderColor: context.accentColor,
|
||||
splashColor: context.accentColor.withOpacity(0.5),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(100)),
|
||||
child: _loading
|
||||
? SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: Platform.isIOS
|
||||
? CupertinoActivityIndicator()
|
||||
: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
))
|
||||
: Text(context.s.loadMore),
|
||||
onPressed: () => _loading
|
||||
? null
|
||||
: setState(
|
||||
() {
|
||||
_loading = true;
|
||||
_nextOffset = _offset;
|
||||
_searchFuture = _getListenNotesList(
|
||||
widget.query, _nextOffset);
|
||||
},
|
||||
),
|
||||
),
|
||||
OutlineButton(
|
||||
highlightedBorderColor: context.accentColor,
|
||||
splashColor: context.accentColor.withOpacity(0.5),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(100)),
|
||||
child: _loading
|
||||
? SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: Platform.isIOS
|
||||
? CupertinoActivityIndicator()
|
||||
: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
))
|
||||
: Text(context.s.loadMore),
|
||||
onPressed: () => _loading
|
||||
? null
|
||||
: setState(
|
||||
() {
|
||||
_loading = true;
|
||||
_nextOffset = _offset;
|
||||
_searchFuture = _getListenNotesList(
|
||||
widget.query, _nextOffset);
|
||||
},
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
SliverToBoxAdapter(
|
||||
child: SizedBox(
|
||||
height: 20,
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 10),
|
||||
child: Center(
|
||||
child: Image(
|
||||
image: context.brightness == Brightness.light
|
||||
? AssetImage('assets/listennotes.png')
|
||||
: AssetImage('assets/listennotes_light.png'),
|
||||
height: 15,
|
||||
child: Text(
|
||||
'Powered by ListenNotes',
|
||||
style: GoogleFonts.quicksand(
|
||||
color: Colors.red, textStyle: TextStyle(fontSize: 15)),
|
||||
),
|
||||
// Image(
|
||||
// image: context.brightness == Brightness.light
|
||||
// ? AssetImage('assets/listennotes.png')
|
||||
// : AssetImage('assets/listennotes_light.png'),
|
||||
// height: 15,
|
||||
// ),
|
||||
),
|
||||
))
|
||||
],
|
||||
@ -706,47 +709,50 @@ class __PodcastIndexSearchState extends State<_PodcastIndexSearch> {
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 10.0, bottom: 20.0),
|
||||
child: OutlineButton(
|
||||
highlightedBorderColor: context.accentColor,
|
||||
splashColor: context.accentColor.withOpacity(0.5),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(100)),
|
||||
child: _loading
|
||||
? SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
))
|
||||
: Text(context.s.loadMore),
|
||||
onPressed: () => _loading
|
||||
? null
|
||||
: setState(
|
||||
() {
|
||||
_loading = true;
|
||||
_limit += 10;
|
||||
_searchFuture = _getPodcatsIndexList(
|
||||
widget.query,
|
||||
limit: _limit);
|
||||
},
|
||||
),
|
||||
),
|
||||
OutlineButton(
|
||||
highlightedBorderColor: context.accentColor,
|
||||
splashColor: context.accentColor.withOpacity(0.5),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(100)),
|
||||
child: _loading
|
||||
? SizedBox(
|
||||
height: 20,
|
||||
width: 20,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
))
|
||||
: Text(context.s.loadMore),
|
||||
onPressed: () => _loading
|
||||
? null
|
||||
: setState(
|
||||
() {
|
||||
_loading = true;
|
||||
_limit += 10;
|
||||
_searchFuture = _getPodcatsIndexList(
|
||||
widget.query,
|
||||
limit: _limit);
|
||||
},
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
SliverToBoxAdapter(
|
||||
child: SizedBox(
|
||||
height: 20,
|
||||
child: Center(
|
||||
child: Image(
|
||||
image: AssetImage('assets/podcastindex.png'),
|
||||
height: 15,
|
||||
),
|
||||
),
|
||||
))
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 10),
|
||||
child: Center(
|
||||
child: Text(
|
||||
'Powered by PODCASTINDEX',
|
||||
style: GoogleFonts.quicksand(
|
||||
color: Colors.red,
|
||||
textStyle: TextStyle(fontSize: 15)),
|
||||
),
|
||||
)
|
||||
// Image(
|
||||
// image: AssetImage('assets/podcastindex.png'),
|
||||
// height: 15,
|
||||
// ),
|
||||
))
|
||||
],
|
||||
);
|
||||
}),
|
||||
|
Loading…
x
Reference in New Issue
Block a user