Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
screenshot
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
screenshot
Commits
df14c5cc
提交
df14c5cc
authored
6月 05, 2022
作者:
ritheshSalyan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update example to support Flutter 3
上级
df7fa9ef
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
31 行增加
和
8 行删除
+31
-8
build.gradle
example/android/app/build.gradle
+2
-2
AndroidManifest.xml
example/android/app/src/main/AndroidManifest.xml
+1
-0
build.gradle
example/android/build.gradle
+1
-1
main.dart
example/lib/main.dart
+19
-5
generated_plugins.cmake
example/windows/flutter/generated_plugins.cmake
+8
-0
没有找到文件。
example/android/app/build.gradle
浏览文件 @
df14c5cc
...
...
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply
from:
"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android
{
compileSdkVersion
3
0
compileSdkVersion
3
1
sourceSets
{
main
.
java
.
srcDirs
+=
'src/main/kotlin'
...
...
@@ -36,7 +36,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId
"com.screenshot.example"
minSdkVersion
17
targetSdkVersion
3
0
targetSdkVersion
3
1
versionCode
flutterVersionCode
.
toInteger
()
versionName
flutterVersionName
}
...
...
example/android/app/src/main/AndroidManifest.xml
浏览文件 @
df14c5cc
...
...
@@ -6,6 +6,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:exported=
"true"
android:theme=
"@style/LaunchTheme"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated=
"true"
...
...
example/android/build.gradle
浏览文件 @
df14c5cc
buildscript
{
ext
.
kotlin_version
=
'1.
3.5
0'
ext
.
kotlin_version
=
'1.
6.
0'
repositories
{
google
()
jcenter
()
...
...
example/lib/main.dart
浏览文件 @
df14c5cc
...
...
@@ -17,7 +17,7 @@ class MyApp extends StatelessWidget {
textTheme:
TextTheme
(
headline6:
TextStyle
(
color:
Colors
.
yellow
,
fontSize:
50
,
//
fontSize: 50,
)),
// This is the theme of your application.
//
...
...
@@ -79,7 +79,14 @@ class _MyHomePageState extends State<MyHomePage> {
border:
Border
.
all
(
color:
Colors
.
blueAccent
,
width:
5.0
),
color:
Colors
.
amberAccent
,
),
child:
Text
(
"This widget will be captured as an image"
)),
child:
Stack
(
children:
[
Image
.
asset
(
'assets/images/flutter.png'
,
),
Text
(
"This widget will be captured as an image"
),
],
)),
),
SizedBox
(
height:
25
,
...
...
@@ -109,9 +116,16 @@ class _MyHomePageState extends State<MyHomePage> {
border:
Border
.
all
(
color:
Colors
.
blueAccent
,
width:
5.0
),
color:
Colors
.
redAccent
,
),
child:
Text
(
"This is an invisible widget"
,
style:
Theme
.
of
(
context
).
textTheme
.
headline6
,
child:
Stack
(
children:
[
Image
.
asset
(
'assets/images/flutter.png'
,
),
Text
(
"This is an invisible widget"
,
style:
Theme
.
of
(
context
).
textTheme
.
headline6
,
),
],
));
screenshotController
.
captureFromWidget
(
...
...
example/windows/flutter/generated_plugins.cmake
浏览文件 @
df14c5cc
...
...
@@ -5,6 +5,9 @@
list
(
APPEND FLUTTER_PLUGIN_LIST
)
list
(
APPEND FLUTTER_FFI_PLUGIN_LIST
)
set
(
PLUGIN_BUNDLED_LIBRARIES
)
foreach
(
plugin
${
FLUTTER_PLUGIN_LIST
}
)
...
...
@@ -13,3 +16,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:
${
plugin
}
_plugin>
)
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES
${${
plugin
}
_bundled_libraries
}
)
endforeach
(
plugin
)
foreach
(
ffi_plugin
${
FLUTTER_FFI_PLUGIN_LIST
}
)
add_subdirectory
(
flutter/ephemeral/.plugin_symlinks/
${
ffi_plugin
}
/windows plugins/
${
ffi_plugin
}
)
list
(
APPEND PLUGIN_BUNDLED_LIBRARIES
${${
ffi_plugin
}
_bundled_libraries
}
)
endforeach
(
ffi_plugin
)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论