fzhangtj
6 年前
当前提交
c9f82a6b
共有 11 个文件被更改,包括 2192 次插入 和 9 次删除
-
19Runtime/engine/WidgetCanvas.cs
-
2Runtime/widgets/editable_text.cs
-
11Runtime/widgets/focus_manager.cs
-
17Samples/UIWidgetSample/ToDoAppCanvas.cs
-
968Samples/UIWidgetSample/UIWidgetSample.unity
-
13Samples/UIWidgetSample/SelectOnStart.cs
-
11Samples/UIWidgetSample/SelectOnStart.cs.meta
-
1001Samples/UIWidgetSample/TextInput.unity
-
7Samples/UIWidgetSample/TextInput.unity.meta
-
141Samples/UIWidgetSample/TextInputCanvas.cs
-
11Samples/UIWidgetSample/TextInputCanvas.cs.meta
968
Samples/UIWidgetSample/UIWidgetSample.unity
文件差异内容过多而无法显示
查看文件
文件差异内容过多而无法显示
查看文件
|
|||
using UnityEngine; |
|||
using UnityEngine.EventSystems; |
|||
|
|||
namespace UIWidgetsSample |
|||
{ |
|||
public class SelectOnStart: MonoBehaviour |
|||
{ |
|||
private void Start() |
|||
{ |
|||
EventSystem.current.SetSelectedGameObject(gameObject); |
|||
} |
|||
} |
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: c42d7614d405d465aab861f4a0cb146e |
|||
MonoImporter: |
|||
externalObjects: {} |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
1001
Samples/UIWidgetSample/TextInput.unity
文件差异内容过多而无法显示
查看文件
文件差异内容过多而无法显示
查看文件
|
|||
fileFormatVersion: 2 |
|||
guid: a677aa8bdebec4af786ef0846602c037 |
|||
DefaultImporter: |
|||
externalObjects: {} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|
|||
using System.Collections.Generic; |
|||
using Unity.UIWidgets.engine; |
|||
using Unity.UIWidgets.foundation; |
|||
using Unity.UIWidgets.painting; |
|||
using Unity.UIWidgets.rendering; |
|||
using Unity.UIWidgets.ui; |
|||
using Unity.UIWidgets.widgets; |
|||
using TextStyle = Unity.UIWidgets.painting.TextStyle; |
|||
|
|||
namespace UIWidgetsSample |
|||
{ |
|||
public class TextInputCanvas: WidgetCanvas |
|||
{ |
|||
public class TextInputSample : StatefulWidget |
|||
{ |
|||
public readonly string title; |
|||
public TextInputSample(Key key = null, string title = null) : base(key) |
|||
{ |
|||
this.title = title; |
|||
} |
|||
|
|||
public override State createState() |
|||
{ |
|||
return new _TextInputSampleState(); |
|||
} |
|||
} |
|||
|
|||
protected override Widget getWidget() |
|||
{ |
|||
return new TextInputSample(key:null, title:gameObject.name); |
|||
} |
|||
|
|||
class _TextInputSampleState : State<TextInputSample> |
|||
{ |
|||
public class ToDoItem |
|||
{ |
|||
public int id; |
|||
public string content; |
|||
} |
|||
|
|||
private int nextId = 0; |
|||
private TextEditingController titleController = new TextEditingController(""); |
|||
private TextEditingController descController = new TextEditingController(""); |
|||
private FocusNode _titleFocusNode; |
|||
private FocusNode _descFocusNode; |
|||
|
|||
public override void initState() { |
|||
base.initState(); |
|||
_titleFocusNode = new FocusNode(); |
|||
_descFocusNode = new FocusNode(); |
|||
} |
|||
|
|||
public override void dispose() |
|||
{ |
|||
_titleFocusNode.dispose(); |
|||
_descFocusNode.dispose(); |
|||
base.dispose(); |
|||
} |
|||
|
|||
private Widget title() |
|||
{ |
|||
return new Text(widget.title??"", textAlign: TextAlign.center, |
|||
style: new TextStyle(fontSize:24, fontWeight: FontWeight.w700)); |
|||
} |
|||
|
|||
private Widget titleInput() |
|||
{ |
|||
return new Row( |
|||
children: new List<Widget>( |
|||
) |
|||
{ |
|||
new SizedBox(width:100, child: new Text("Title")), |
|||
new Flexible(child: new Container( |
|||
decoration: new BoxDecoration(border: Border.all(new Color(0xFF000000), 1)), |
|||
padding: EdgeInsets.fromLTRB(8, 0, 8, 0), |
|||
child: new EditableText(maxLines: 1, |
|||
controller: titleController, |
|||
autofocus: true, |
|||
focusNode: new FocusNode(), |
|||
style: new TextStyle( |
|||
fontSize: 18, |
|||
height: 1.5f, |
|||
color: new Color(0xFF1389FD) |
|||
), |
|||
selectionColor: Color.fromARGB(255, 255, 0, 0), |
|||
cursorColor: Color.fromARGB(255, 0, 0, 0)) |
|||
)), |
|||
|
|||
} |
|||
); |
|||
} |
|||
|
|||
private Widget descInput() |
|||
{ |
|||
return new Container( |
|||
margin: EdgeInsets.fromLTRB(0, 10, 0, 10), |
|||
child: new Row( |
|||
children: new List<Widget>( |
|||
) |
|||
{ |
|||
new SizedBox(width:100, child: new Text("Description")), |
|||
new Flexible(child: new Container( |
|||
decoration: new BoxDecoration(border: Border.all(new Color(0xFF000000), 1)), |
|||
padding: EdgeInsets.fromLTRB(8, 0, 8, 0), |
|||
child: new EditableText(maxLines: 1, |
|||
controller: descController, |
|||
focusNode: new FocusNode(), |
|||
style: new TextStyle( |
|||
fontSize: 18, |
|||
height: 1.5f, |
|||
color: new Color(0xFF1389FD) |
|||
), |
|||
selectionColor: Color.fromARGB(255, 255, 0, 0), |
|||
cursorColor: Color.fromARGB(255, 0, 0, 0)) |
|||
)), |
|||
|
|||
} |
|||
)); |
|||
} |
|||
public override Widget build(BuildContext context) |
|||
{ |
|||
var container = new Container( |
|||
padding: EdgeInsets.all(10), |
|||
decoration: new BoxDecoration(color:new Color(0x7F000000), border:Border.all(color: Color.fromARGB(255, 255, 0, 0), width: 5), |
|||
borderRadius: BorderRadius.all(2)), |
|||
child: new Column( |
|||
crossAxisAlignment: CrossAxisAlignment.stretch, |
|||
children: new List<Widget> |
|||
{ |
|||
title(), |
|||
titleInput(), |
|||
descInput(), |
|||
} |
|||
) |
|||
); |
|||
return container; |
|||
} |
|||
} |
|||
} |
|||
|
|||
} |
|
|||
fileFormatVersion: 2 |
|||
guid: e9bc91696c1584e11b23dca1a9e3cde3 |
|||
MonoImporter: |
|||
externalObjects: {} |
|||
serializedVersion: 2 |
|||
defaultReferences: [] |
|||
executionOrder: 0 |
|||
icon: {instanceID: 0} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
撰写
预览
正在加载...
取消
保存
Reference in new issue