forked from toly1994328/FlutterUnit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ 添加NestedScrollView、SliverOverlapAbsorber、SliverOverlapInjector组件
- Loading branch information
1 parent
46addef
commit 3cc2418
Showing
7 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// | ||
// Generated file. Do not edit. | ||
// | ||
|
||
#include "generated_plugin_registrant.h" | ||
|
||
|
||
void RegisterPlugins(flutter::PluginRegistry* registry) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// Generated file. Do not edit. | ||
// | ||
|
||
#ifndef GENERATED_PLUGIN_REGISTRANT_ | ||
#define GENERATED_PLUGIN_REGISTRANT_ | ||
|
||
#include <flutter/plugin_registry.h> | ||
|
||
// Registers Flutter plugins. | ||
void RegisterPlugins(flutter::PluginRegistry* registry); | ||
|
||
#endif // GENERATED_PLUGIN_REGISTRANT_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Plugins to include in the build. | ||
GENERATED_PLUGINS=\ | ||
|
||
GENERATED_PLUGINS_DIR=flutter/ephemeral/.plugin_symlinks | ||
# A plugin library name plugin name with _plugin appended. | ||
GENERATED_PLUGIN_LIB_NAMES=$(foreach plugin,$(GENERATED_PLUGINS),$(plugin)_plugin) | ||
|
||
# Variables for use in the enclosing Makefile. Changes to these names are | ||
# breaking changes. | ||
PLUGIN_TARGETS=$(GENERATED_PLUGINS) | ||
PLUGIN_LIBRARIES=$(foreach plugin,$(GENERATED_PLUGIN_LIB_NAMES),\ | ||
$(OUT_DIR)/lib$(plugin).so) | ||
PLUGIN_LDFLAGS=$(patsubst %,-l%,$(GENERATED_PLUGIN_LIB_NAMES)) | ||
PLUGIN_CPPFLAGS=$(foreach plugin,$(GENERATED_PLUGINS),\ | ||
-I$(GENERATED_PLUGINS_DIR)/$(plugin)/linux) | ||
|
||
# Targets | ||
|
||
# Implicit rules don't match phony targets, so list plugin builds explicitly. | ||
|
||
.PHONY: $(GENERATED_PLUGINS) | ||
$(GENERATED_PLUGINS): | ||
make -C $(GENERATED_PLUGINS_DIR)/$@/linux \ | ||
OUT_DIR=$(OUT_DIR) \ | ||
FLUTTER_EPHEMERAL_DIR="$(abspath flutter/ephemeral)" |