Skip to content

Commit

Permalink
Don't try to build this just for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
femalemonkeyman committed Jun 14, 2023
1 parent efc2d98 commit fb65031
Show file tree
Hide file tree
Showing 21 changed files with 1,106 additions and 692 deletions.
27 changes: 21 additions & 6 deletions .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,35 @@
# This file should be version controlled.

version:
revision: d8a916f232130525b4a1b86abaed3e0c91d7a586
channel: master
revision: f92f44110e87bad5ff168335c36da6f6053036e6
channel: unknown

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: d8a916f232130525b4a1b86abaed3e0c91d7a586
base_revision: d8a916f232130525b4a1b86abaed3e0c91d7a586
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6
- platform: android
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6
- platform: ios
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6
- platform: linux
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6
- platform: macos
create_revision: d8a916f232130525b4a1b86abaed3e0c91d7a586
base_revision: d8a916f232130525b4a1b86abaed3e0c91d7a586
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6
- platform: web
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6
- platform: windows
create_revision: f92f44110e87bad5ff168335c36da6f6053036e6
base_revision: f92f44110e87bad5ff168335c36da6f6053036e6

# User provided section

Expand Down
12 changes: 12 additions & 0 deletions ios/RunnerTests/RunnerTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import Flutter
import UIKit
import XCTest

class RunnerTests: XCTestCase {

func testExample() {
// If you add code to the Runner application, consider adding tests here.
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
}

}
17 changes: 10 additions & 7 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'dart:ui';
import '/media/anime_videos.dart';
import '/media/manga_reader.dart';
import 'media/media_anime.dart';
import 'media/media_manga.dart';
import 'pages/later_page.dart';
import '/novel/novel_reader.dart';
import 'package:flutter/material.dart';
Expand Down Expand Up @@ -32,10 +32,16 @@ void main() async {
runApp(
MaterialApp.router(
theme: ThemeData(
colorScheme: const ColorScheme.dark(),
colorScheme: ColorScheme.fromSeed(
seedColor: Color.fromARGB(255, 119, 0, 255),
brightness: Brightness.dark,
),
useMaterial3: true,
chipTheme: const ChipThemeData(
showCheckmark: false,
side: BorderSide(
color: Color.fromARGB(171, 121, 120, 120),
),
),
pageTransitionsTheme: const PageTransitionsTheme(
builders: {
Expand Down Expand Up @@ -63,7 +69,7 @@ void main() async {
showUnselectedLabels: false,
currentIndex: shell.currentIndex,
onTap: (value) => shell.goBranch(value),
items: const [
items: [
BottomNavigationBarItem(
icon: Icon(MdiIcons.youtubeTv),
label: 'Anime',
Expand Down Expand Up @@ -125,7 +131,6 @@ void main() async {
],
),
StatefulShellBranch(
//navigatorKey: _shellkey,
routes: [
GoRoute(
name: 'manga',
Expand Down Expand Up @@ -162,7 +167,6 @@ void main() async {
],
),
StatefulShellBranch(
//navigatorKey: _shellkey,
routes: [
GoRoute(
name: 'novel',
Expand All @@ -181,7 +185,6 @@ void main() async {
],
),
StatefulShellBranch(
//navigatorKey: _shellkey,
routes: [
GoRoute(
name: 'later',
Expand Down
Loading

0 comments on commit fb65031

Please sign in to comment.