Code Monkey home page Code Monkey logo

manga_mint's Introduction

MangaMint

GitHub issues GitHub pull requests GitHub GitHub stars GitHub forks GitHub watchers GitHub contributors GitHub last commit

MangaMint is manga reader application that provides manga and comic bahasa indonesia and currently available on android only, idk in the future will be available on ios or not

Usage

  1. Download or clone this repository manga-api

    git clone https://github.com/febryardiansyah/manga-api

  2. you have to deploy this api by yourself (You can use heroku,vercel, or glitch)
  3. change const String BaseUrl = 'https://10.0.2.2:8000/api/'; (<manga_mint>/lib/constants/base_url.dart) to your API. ex: example.herokuapp.com.com/api/

Prototype of This App

MangaMint Protyotype

Download Apk

mangamint.apk

Features

  • Manga List (Japanase Comic)
  • Manhua List (Chinese Comic)
  • Manhwa List (Korean Comic)
  • Last chapter update
  • Bookmarks Manga
  • Read last chapter opened
  • Search Manga by name and Genres
  • Read chapter vertically or horizontally

Screenshot

Build Setup

# install dependencies
$ flutter pub get

# run debug mode
$ flutter run

# run release mode
$ flutter run --release

# build app bundle
$ flutter build appbundle

# build apk
$ flutter build apk

Dependencies that i use

  • http: ^0.12.1
  • bloc: ^5.0.1
  • flutter_bloc: ^5.0.1
  • google_fonts: ^1.1.0
  • equatable: ^1.2.0
  • rxdart: ^0.24.1
  • ff_navigation_bar: ^0.1.5
  • flutter_spinkit: ^4.1.2+1
  • shimmer: ^1.1.1
  • carousel_slider: ^2.2.1
  • flutter_screenutil: ^2.2.0
  • cached_network_image: ^2.2.0+1
  • photo_view: ^0.9.2
  • shared_preferences: ^0.5.8
  • path_provider: ^1.6.11
  • path: ^1.7.0
  • hive: ^1.4.1+1
  • hive_flutter: ^0.2.1
  • toast: ^0.1.5
  • font_awesome_flutter: ^8.8.1
  • url_launcher: ^5.5.0

For detailed explanation on how things work, check out Flutter docs.

manga_mint's People

Contributors

febryardiansyah avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

manga_mint's Issues

1 positional argument(s) expected, but 0 found

I used 'flutter pub get, upgrade and out dated' commands but i get this error.

`error - 1 positional argument(s) expected, but 0 found - lib\components\item_big.dart:41:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\components\item_small.dart:16:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\components\splash_screen.dart:26:20 - not_enough_positional_arguments

info - Unused import: 'package:mangamint/service/api_service.dart' - lib\repositories\manhua_manhwa_repo.dart:6:8 - unused_import

error - 1 positional argument(s) expected, but 0 found - lib\screens\chapter_screen\chapter_screen.dart:66:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\detail_screen\manga_detail_screen.dart:89:20 -

error - 1 positional argument(s) expected, but 0 found - lib\screens\home_screens\home_screen.dart:35:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\home_screens\my_carousel.dart:21:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\lainnya_screen\lainnya_screen.dart:59:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\list_manga_screen\manhua_category.dart:37:20 -
not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\list_manga_screen\manhwa_category.dart:39:20 -
not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\list_manga_screen\semuanya_category.dart:37:20 -
not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\result_screen\manga_by_genre_screen.dart:47:20 -
not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\result_screen\result_screen.dart:28:20 - not_enough_positional_arguments

error - 1 positional argument(s) expected, but 0 found - lib\screens\result_screen\terpopuler_screen.dart:31:20 -
not_enough_positional_arguments`

4 positional argument(s) expected, but 0 found.

Hi, I'm just learning flutter and unable to resolve an error. can someone please help me in resolving this issue. Error coming at "SignInButton (" 4 positional argument(s) expected, but 0 found. (Documentation) Try adding the missing arguments. Please find my code below.

import 'package:flutter/material.dart';
import 'package:signin1/app/sign_in/sign_in_button.dart';
import 'package:signin1/common_widgets/custom_raised_button.dart';

class SignInPage extends StatelessWidget {
@OverRide
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: true,
title: Text('Time Tracker'),
elevation: 2.0,
),
body: _buildContent(),
backgroundColor: Colors.grey[200],
);
}

Widget _buildContent() {
return Padding(
padding: EdgeInsets.all(16.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text(
'Sign in',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 32.0, fontWeight: FontWeight.w600),
),
SizedBox(height: 8.0),
SignInButton (
text: 'sign in',
textColor: Colors.black87,
color: Colors.white,
onPressed: (){},
),
],
));
}
}

import 'package:flutter/material.dart';

class CustomRaisedButton extends StatelessWidget {
CustomRaisedButton({
required this.child,
required this.color,
this.borderRadius = 2.0,
required this.onPressed,
});
final Widget child;
final Color color;
final double borderRadius;
final VoidCallback onPressed;

@OverRide
Widget build(BuildContext context) {
return SizedBox(
child: ElevatedButton(
child: child,
style: ButtonStyle(
backgroundColor: MaterialStateProperty.all(color),
shape: MaterialStateProperty.all(
RoundedRectangleBorder(
borderRadius: BorderRadius.circular(borderRadius),
))),
onPressed: onPressed,
),
);
}
}
import 'package:flutter/material.dart';
import 'package:signin1/common_widgets/custom_raised_button.dart';

class SignInButton extends CustomRaisedButton {
SignInButton(
String text,
Color color,
Color textColor,
VoidCallback onPressed,

) : super(
child: Text(
text,
style: TextStyle(color: textColor, fontSize: 15.0),
),
color: color,
borderRadius: 8.0,
onPressed: onPressed,
);
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.