Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version compatibility issues with latest flutter apps resolved #168

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .flutter-plugins
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# This is a generated file; do not edit or check into version control.
webview_flutter=/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter-3.0.4/
webview_flutter_android=/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter_android-2.10.4/
webview_flutter_wkwebview=/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter_wkwebview-2.9.5/
1 change: 1 addition & 0 deletions .flutter-plugins-dependencies
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"webview_flutter_wkwebview","path":"/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter_wkwebview-2.9.5/","native_build":true,"dependencies":[]}],"android":[{"name":"webview_flutter_android","path":"/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter_android-2.10.4/","native_build":true,"dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"webview_flutter","dependencies":["webview_flutter_android","webview_flutter_wkwebview"]},{"name":"webview_flutter_android","dependencies":[]},{"name":"webview_flutter_wkwebview","dependencies":[]}],"date_created":"2023-12-12 19:31:39.622064","version":"3.13.7"}
2 changes: 1 addition & 1 deletion example/.flutter-plugins-dependencies
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"webview_flutter_wkwebview","path":"/home/shahzad/.pub-cache/hosted/pub.dartlang.org/webview_flutter_wkwebview-2.7.1/","dependencies":[]}],"android":[{"name":"webview_flutter_android","path":"/home/shahzad/.pub-cache/hosted/pub.dartlang.org/webview_flutter_android-2.8.3/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"webview_flutter","dependencies":["webview_flutter_android","webview_flutter_wkwebview"]},{"name":"webview_flutter_android","dependencies":[]},{"name":"webview_flutter_wkwebview","dependencies":[]}],"date_created":"2022-03-05 16:05:49.353432","version":"2.10.3"}
{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"webview_flutter_wkwebview","path":"/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter_wkwebview-2.9.5/","native_build":true,"dependencies":[]}],"android":[{"name":"webview_flutter_android","path":"/home/delwar36/.pub-cache/hosted/pub.dev/webview_flutter_android-2.10.4/","native_build":true,"dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"webview_flutter","dependencies":["webview_flutter_android","webview_flutter_wkwebview"]},{"name":"webview_flutter_android","dependencies":[]},{"name":"webview_flutter_wkwebview","dependencies":[]}],"date_created":"2023-12-12 19:33:54.030256","version":"3.13.7"}
6 changes: 3 additions & 3 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
ext.kotlin_version = '1.6.10'
ext.kotlin_version = '1.8.20'
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand All @@ -26,6 +26,6 @@ subprojects {
project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
2 changes: 1 addition & 1 deletion example/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class TeXViewFullExample extends StatefulWidget {
const TeXViewFullExample({Key? key}) : super(key: key);

@override
_TeXViewFullExampleState createState() => _TeXViewFullExampleState();
State createState() => _TeXViewFullExampleState();
}

class _TeXViewFullExampleState extends State<TeXViewFullExample> {
Expand Down
4 changes: 2 additions & 2 deletions example/lib/tex_view_fonts_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ class TeXViewFontsExamples extends StatelessWidget {
),
backgroundColor: Colors.white,
),
loadingWidgetBuilder: (context) => Center(
loadingWidgetBuilder: (context) => const Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: const <Widget>[
children: <Widget>[
CircularProgressIndicator(),
Text("Rendering...")
],
Expand Down
4 changes: 2 additions & 2 deletions example/lib/tex_view_image_video_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ class TeXViewImageVideoExample extends StatelessWidget {
),
backgroundColor: Colors.white,
),
loadingWidgetBuilder: (context) => Center(
loadingWidgetBuilder: (context) => const Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: const <Widget>[
children: <Widget>[
CircularProgressIndicator(),
Text("Rendering...")
],
Expand Down
6 changes: 3 additions & 3 deletions example/lib/tex_view_ink_well_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TeXViewInkWellExample extends StatefulWidget {
: super(key: key);

@override
_TeXViewInkWellExampleState createState() => _TeXViewInkWellExampleState();
State createState() => _TeXViewInkWellExampleState();
}

class _TeXViewInkWellExampleState extends State<TeXViewInkWellExample> {
Expand Down Expand Up @@ -77,12 +77,12 @@ class _TeXViewInkWellExampleState extends State<TeXViewInkWellExample> {
),
backgroundColor: Colors.white,
),
loadingWidgetBuilder: (context) => Center(
loadingWidgetBuilder: (context) => const Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: const <Widget>[
children: <Widget>[
CircularProgressIndicator(),
Text("Rendering...")
],
Expand Down
4 changes: 2 additions & 2 deletions example/lib/tex_view_markdown_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ class TeXViewMarkdownExamples extends StatelessWidget {
),
backgroundColor: Colors.white,
),
loadingWidgetBuilder: (context) => Center(
loadingWidgetBuilder: (context) => const Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: const <Widget>[
children: <Widget>[
CircularProgressIndicator(),
Text("Rendering...")
],
Expand Down
2 changes: 1 addition & 1 deletion example/lib/tex_view_quiz_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class TeXViewQuizExample extends StatefulWidget {
: super(key: key);

@override
_TeXViewQuizExampleState createState() => _TeXViewQuizExampleState();
State createState() => _TeXViewQuizExampleState();
}

class _TeXViewQuizExampleState extends State<TeXViewQuizExample> {
Expand Down
Loading