Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
package io.flutter.plugins;

import io.flutter.plugin.common.PluginRegistry;
import androidx.annotation.Keep;
import androidx.annotation.NonNull;
import io.flutter.Log;

import io.flutter.embedding.engine.FlutterEngine;

/**
* Generated file. Do not edit.
* This file is generated by the Flutter tool based on the
* plugins that support the Android platform.
*/
@Keep
public final class GeneratedPluginRegistrant {
public static void registerWith(PluginRegistry registry) {
if (alreadyRegisteredWith(registry)) {
return;
}
}

private static boolean alreadyRegisteredWith(PluginRegistry registry) {
final String key = GeneratedPluginRegistrant.class.getCanonicalName();
if (registry.hasPlugin(key)) {
return true;
}
registry.registrarFor(key);
return false;
private static final String TAG = "GeneratedPluginRegistrant";
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
}
}
4 changes: 2 additions & 2 deletions android/local.properties
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this file should be git-ignored.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sdk.dir=/Users/denny.deng/Library/Android/sdk
flutter.sdk=/Users/denny.deng/fvm/versions/3.0.1
sdk.dir=/Users/somboro080906/Library/Android/sdk
flutter.sdk=/Users/somboro080906/dev/flutter/flutter_3_27_1
flutter.versionName=0.0.2
10 changes: 5 additions & 5 deletions lib/dynamic_widget/drop_cap_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class DropCap extends StatelessWidget {
this.child,
required this.width,
required this.height,
}) : super(key: key);
}) : super(key: key);

@override
Widget build(BuildContext context) {
Expand Down Expand Up @@ -76,10 +76,10 @@ class DropCapText extends StatelessWidget {
@override
Widget build(BuildContext context) {
TextStyle textStyle = TextStyle(
color: Theme.of(context).textTheme.bodyText2!.color,
fontSize: Theme.of(context).textTheme.bodyText2!.fontSize,
height: Theme.of(context).textTheme.bodyText2!.height,
fontFamily: Theme.of(context).textTheme.bodyText2!.fontFamily,
color: Theme.of(context).textTheme.bodyMedium!.color,
fontSize: Theme.of(context).textTheme.bodyMedium!.fontSize,
height: Theme.of(context).textTheme.bodyMedium!.height,
fontFamily: Theme.of(context).textTheme.bodyMedium!.fontFamily,
).merge(style);

if (data == '')
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:

logging: ^1.0.1

http: ^0.13.1
http: ^1.2.2

font_awesome_flutter: ^9.0.0

Expand Down