Skip to content

Commit

Permalink
final refinements to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msal4 committed Mar 13, 2019
1 parent faae6b3 commit da73b84
Show file tree
Hide file tree
Showing 27 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Expand Up @@ -14,7 +14,7 @@
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="HalaSat Cinema"
android:label="Shashety Cinema"
android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"
Expand Down
Binary file modified android/app/src/main/res/mipmap-hdpi/launcher_icon.png
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/launcher_icon.png
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/launcher_icon.png
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/launcher_icon.png
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/launcher_icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/featured-placeholder.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 1 addition & 4 deletions lib/src/delegates/post_search.dart
Expand Up @@ -81,10 +81,7 @@ class PostSearchDelegate extends SearchDelegate<String> {
post.type == '0' ? Icons.movie : Icons.menu,
),
title: Text(post.title),
onTap: () => PostVerticalCard(
post: post,
onPressed: () => _goToPostPage(context, post),
),
onTap: () => _goToPostPage(context, post),
);
},
);
Expand Down
4 changes: 2 additions & 2 deletions lib/src/pages/app.dart
Expand Up @@ -25,8 +25,8 @@ class App extends StatelessWidget {
debugShowCheckedModeBanner: false,
title: 'Shashety Cinema',
theme: ThemeData.dark().copyWith(
primaryColor: Color(0xffc0392b),
accentColor: Color(0xffe74c3c),
primaryColor: Color(0xff40739e),
accentColor: Color(0xff487eb0),
),
home: Scaffold(
drawer: _buildDrawer(context),
Expand Down
26 changes: 14 additions & 12 deletions lib/src/pages/category.dart
Expand Up @@ -4,7 +4,6 @@ import 'package:flutter/material.dart';
import 'package:halasat_cinema_mobile/src/models/post_list.dart';
import 'package:halasat_cinema_mobile/src/pages/post_page.dart';
import 'package:halasat_cinema_mobile/src/services/post_list_category.dart';
import 'package:halasat_cinema_mobile/src/widgets/post_card.dart';
import 'package:halasat_cinema_mobile/src/widgets/post_card_vertical.dart';
import 'package:incrementally_loading_listview/incrementally_loading_listview.dart';

Expand Down Expand Up @@ -55,18 +54,21 @@ class _CategoryPageState extends State<CategoryPage>
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
margin: EdgeInsets.only(bottom: 10.0),
child: _dataList != null
? _buildList(context, _dataList)
: Center(
child: Container(
height: 330.0,
child: Align(
child: CircularProgressIndicator(),
body: SafeArea(
bottom: false,
child: Container(
margin: EdgeInsets.only(bottom: 10.0),
child: _dataList != null
? _buildList(context, _dataList)
: Center(
child: Container(
height: 330.0,
child: Align(
child: CircularProgressIndicator(),
),
),
),
),
),
),
);
}
Expand All @@ -75,7 +77,7 @@ class _CategoryPageState extends State<CategoryPage>
return Column(
children: <Widget>[
Container(
padding: EdgeInsets.only(bottom: 5.0),
padding: EdgeInsets.symmetric(vertical: 5.0),
margin: EdgeInsets.only(bottom: 8.0),
decoration: BoxDecoration(
border: Border(
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
@@ -1,7 +1,7 @@
name: halasat_cinema_mobile
description: Vodu client for streaming movies and tv shows.

version: 1.0.0+1
version: 1.1.0+2

environment:
sdk: '>=2.0.0-dev.68.0 <3.0.0'
Expand Down

0 comments on commit da73b84

Please sign in to comment.