Skip to content
Merged
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
2 changes: 1 addition & 1 deletion lib/view/widgets/animation_container.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class _AniContainerState extends State<AniContainer> {
),
Text(
widget.animationName,
style: TextStyle(fontSize: 8.sp),
style: TextStyle(fontSize: 10.sp),
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
Expand Down
7 changes: 6 additions & 1 deletion lib/view/widgets/effects_container.dart
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ class _EffectContainerState extends State<EffectContainer> {
fit: BoxFit.contain,
),
),
Text(widget.effectName),
Text(
widget.effectName,
style: TextStyle(fontSize: 10.sp),
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
],
),
),
Expand Down
2 changes: 2 additions & 0 deletions macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ import file_picker
import flutter_blue_plus_darwin
import path_provider_foundation
import share_plus
import shared_preferences_foundation
import url_launcher_macos

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin"))
FlutterBluePlusPlugin.register(with: registry.registrar(forPlugin: "FlutterBluePlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}
Loading