Skip to content

Commit

Permalink
Icon Update
Browse files Browse the repository at this point in the history
  • Loading branch information
JayNakum committed Apr 28, 2021
1 parent c175359 commit 62d8e19
Show file tree
Hide file tree
Showing 23 changed files with 43 additions and 44 deletions.
Binary file modified android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 22 additions & 21 deletions lib/widgets/explore/rank.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,29 @@ class _RankState extends State<Rank> {
final users = snapshot.data.docs;

return ListView.builder(
itemCount: users.length,
itemBuilder: (ctx, i) {
return ListTile(
tileColor: Colors.black26,
leading: Container(
height: 50,
width: 50,
child: Image.network(
users[i].data()['photo'],
fit: BoxFit.cover,
),
itemCount: users.length,
itemBuilder: (ctx, i) {
return ListTile(
tileColor: Colors.black26,
leading: Container(
height: 50,
width: 50,
child: Image.network(
users[i].data()['photo'],
fit: BoxFit.cover,
),
title: Text(
users[i].data()['name'],
style: Theme.of(context).textTheme.bodyText1,
),
trailing: Text(
users[i].data()['streams'].toString(),
style: Theme.of(context).textTheme.bodyText2,
),
);
});
),
title: Text(
users[i].data()['name'],
style: Theme.of(context).textTheme.bodyText1,
),
trailing: Text(
users[i].data()['streams'].toString(),
style: Theme.of(context).textTheme.bodyText2,
),
);
},
);
},
);
}
Expand Down
42 changes: 20 additions & 22 deletions lib/widgets/explore/search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,27 @@ class Search extends StatelessWidget {
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Expanded(
child: TextField(
// onSubmitted: (value) {
// _userName = value;
// },
controller: _searchController,
keyboardType: TextInputType.name,
onEditingComplete: () {
FocusScope.of(context).unfocus();
return search(_searchController.text);
},
decoration: InputDecoration(
filled: true,
hintText: 'Search',
// hintStyle: Theme.of(context).textTheme.headline3,
suffixIcon: Icon(
Icons.search_rounded,
color: Colors.orange,
),

fillColor: Colors.amber,
border: InputBorder.none,
child: TextField(
// onSubmitted: (value) {
// _userName = value;
// },
controller: _searchController,
keyboardType: TextInputType.name,
onEditingComplete: () {
FocusScope.of(context).unfocus();
return search(_searchController.text);
},
decoration: InputDecoration(
filled: true,
hintText: 'Search',
// hintStyle: Theme.of(context).textTheme.headline3,
suffixIcon: Icon(
Icons.search_rounded,
color: Colors.orange,
),

fillColor: Colors.amber,
border: InputBorder.none,
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dev_dependencies:
flutter_icons:
android: true
ios: true
image_path: "assets/images/splash_screen.png"
image_path: "assets/images/app_logo.jpeg"
adaptive_icon_background: "#1A1A1A"
adaptive_icon_foreground: "assets/images/app_icon.png"

Expand Down

0 comments on commit 62d8e19

Please sign in to comment.