Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gmalpha_flutter
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile
gmalpha_flutter
Commits
6ad9b300
Commit
6ad9b300
authored
May 27, 2019
by
汪洋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除 build 参数
parent
c2950920
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
494 deletions
+9
-494
input_invite_code_page.dart
lib/input_invite_code_page.dart
+0
-433
main.dart
lib/main.dart
+5
-57
pubspec.lock
pubspec.lock
+4
-4
No files found.
lib/input_invite_code_page.dart
View file @
6ad9b300
...
@@ -430,437 +430,4 @@ abstract class InputBorder extends UnderlineInputBorder {
...
@@ -430,437 +430,4 @@ abstract class InputBorder extends UnderlineInputBorder {
textTrueWidth
=
p
.
minIntrinsicWidth
;
textTrueWidth
=
p
.
minIntrinsicWidth
;
}
}
}
}
=======
// import 'package:flutter/material.dart';
// import 'dart:ui' as ui;
// import 'package:flutter/services.dart';
// import 'hybrid_stack/hybrid_stack_manager_plugin.dart';
// class InputInviteCode extends StatelessWidget {
// RouterOption routeOption;
// InputInviteCode(RouterOption option, {Key key}) : super(key: key) {
// routeOption = option;
// }
// @override
// Widget build(BuildContext context) {
// // TODO: implement build
// return MaterialApp(
// debugShowCheckedModeBanner: false,
// home: InputInviteCodeContent(),
// theme: ThemeData(
// primaryColor: Colors.white,
// highlightColor: Colors.white,
// splashColor: Colors.white70)
// );
// }
// }
// class InputInviteCodeContent extends StatelessWidget {
// BuildContext context;
// bool isErrorNoticeVisible = false;
// InviteCodeInputText inputText;
// void onLeadingClick() {
// HybridStackManagerPlugin.hybridStackManagerPlugin.popCurPage();
// }
// @override
// Widget build(BuildContext context) {
// this.context = context;
// ValueNotifier<bool> errorVisibleNotifierData =
// new ValueNotifier<bool>(isErrorNoticeVisible);
// // TODO: implement build
// return Scaffold(
// backgroundColor: Colors.white,
// appBar: AppBar(
// elevation: 0.0,
// leading: IconButton(
// icon: Icon(Icons.arrow_back_ios), onPressed: onLeadingClick),
// ),
// body: Container(
// child: Center(
// child: Column(
// mainAxisAlignment: MainAxisAlignment.center,
// crossAxisAlignment: CrossAxisAlignment.center,
// children: <Widget>[
// Text("输入邀请码",
// style: TextStyle(fontSize: 25, fontWeight: FontWeight.bold)),
// SizedBox(width: 10.0, height: 40.0),
// GestureDetector(
// onLongPress: () {
// // print("长按------------");
// // showDialog(
// // context: context,
// // builder: (context) {
// // return SimpleDialog(children: <Widget>[
// // ListTile(
// // title: Text("粘贴",style: TextStyle(),),
// // onTap: () {
// // Future<ClipboardData> data =
// // Clipboard.getData('text/plain');
// // data.then((value) {
// // inviteCodeNotifierData.value = value.text;
// // });
// // Navigator.of(context).pop();
// // })
// // ]);
// // });
// },
// child: Container(
// color: Colors.white,
// child: inputText=InviteCodeInputText(
// textSize: 30.0,
// letterSpace: 30.0,
// inputBorder: CustomRectInputBorder(
// textSize: 30.0,
// textLength: 1,
// borderSide:
// BorderSide(color: Colors.black, width: 1.5)),
// ),
// ),
// ),
// SizedBox(width: 10.0, height: 5.0),
// InviteCodeErrorNoticeText(errorVisibleNotifierData),
// SizedBox(width: 10.0, height: 70.0),
// RaisedButton(
// color: Colors.white,
// child: Padding(
// padding: EdgeInsets.fromLTRB(0, 15, 0, 15),
// child: Text(
// "确定",
// style: TextStyle(fontWeight: FontWeight.bold),
// )),
// elevation: 0.0,
// padding: EdgeInsets.fromLTRB(70, 0, 70, 0),
// onPressed: () {
// errorVisibleNotifierData.value = isErrorNoticeVisible;
// isErrorNoticeVisible = !isErrorNoticeVisible;
// print("邀请码=================="+inputText.state.textSlotChar[0]+
// inputText.state.textSlotChar[1]+
// inputText.state.textSlotChar[2]+
// inputText.state.textSlotChar[3]+
// inputText.state.textSlotChar[4]);
// },
// shape: Border(
// top: BorderSide(color: Colors.black, width: 2.0),
// right: BorderSide(color: Colors.black, width: 2.0),
// bottom: BorderSide(color: Colors.black, width: 2.0),
// left: BorderSide(color: Colors.black, width: 2.0)),
// ),
// SizedBox(width: 10.0, height: 90.0),
// ],
// )),
// ));
// }
// }
// class InviteCodeErrorNoticeText extends StatefulWidget {
// InviteCodeErrorNoticeOpenState state;
// ValueNotifier<bool> data;
// InviteCodeErrorNoticeText(this.data);
// @override
// State<StatefulWidget> createState() {
// // TODO: implement createState
// return state = InviteCodeErrorNoticeOpenState();
// }
// }
// class InviteCodeErrorNoticeOpenState extends State<InviteCodeErrorNoticeText> {
// bool errorNoticeVisible = true;
// @override
// void initState() {
// // TODO: implement initState
// super.initState();
// widget.data.addListener(() {
// changeVisibleParams(widget.data.value);
// });
// }
// @override
// Widget build(BuildContext context) {
// // TODO: implement build
// return IgnorePointer(
// child: Opacity(
// opacity: errorNoticeVisible == true ? 1.0 : 0.0,
// child: Text("未找到邀请者 请确认邀请码是否正确",
// textAlign: TextAlign.center,
// style: TextStyle(color: Colors.black,fontSize: 13),
// )));
// }
// void changeVisibleParams(bool visible) {
// setState(() {
// this.errorNoticeVisible = visible;
// });
// }
// }
// class InviteCodeInputText extends StatefulWidget {
// final double letterSpace;
// final double textSize;
// final int codeLength;
// final InputBorder inputBorder;
// InviteCodeInputState state;
// InviteCodeInputText(
// {Key key,
// this.letterSpace = 20.0,
// this.textSize = 20.0,
// this.codeLength = 5,
// this.inputBorder})
// : super(key: key);
// @override
// State<StatefulWidget> createState() {
// // TODO: implement createState
// return state=InviteCodeInputState();
// }
// }
// class InviteCodeInputState extends State<InviteCodeInputText> {
// var textFieldArr = List<TextField>(5);
// var textSlotChar = List<String>(5);
// @override
// void initState() {
// // TODO: implement initState
// super.initState();
// textFieldArr[0] = TextField(
// maxLength: 1,
// keyboardType: TextInputType.number,
// cursorColor: Colors.transparent,
// style: TextStyle(
// fontSize: widget.textSize,
// fontWeight: FontWeight.bold,
// color: Colors.black,
// ),
// enableInteractiveSelection: false,
// focusNode: FocusNode(),
// onChanged: (String res) {
// if (res.length > 0) {
// FocusNode node = textFieldArr[1].focusNode;
// FocusScope.of(context).requestFocus(node);
// }
// textSlotChar[0]=res;
// },
// textAlign: TextAlign.center,
// decoration: InputDecoration(
// counterText: "",
// enabledBorder: widget.inputBorder,
// focusedBorder: widget.inputBorder),
// onSubmitted: (text) {},
// );
// textFieldArr[1] = TextField(
// maxLength: 1,
// keyboardType: TextInputType.number,
// cursorColor: Colors.transparent,
// style: TextStyle(
// fontWeight: FontWeight.bold,
// fontSize: widget.textSize,
// color: Colors.black,
// ),
// enableInteractiveSelection: false,
// focusNode: FocusNode(),
// onChanged: (String res) {
// if (res.length > 0) {
// FocusNode node = textFieldArr[2].focusNode;
// FocusScope.of(context).requestFocus(node);
// } else if (res.isEmpty) {
// FocusNode node = textFieldArr[0].focusNode;
// FocusScope.of(context).requestFocus(node);
// }
// textSlotChar[1]=res;
// },
// textAlign: TextAlign.center,
// decoration: InputDecoration(
// counterText: "",
// enabledBorder: widget.inputBorder,
// focusedBorder: widget.inputBorder),
// onSubmitted: (text) {},
// );
// textFieldArr[2] = TextField(
// maxLength: 1,
// keyboardType: TextInputType.number,
// cursorColor: Colors.transparent,
// style: TextStyle(
// fontWeight: FontWeight.bold,
// fontSize: widget.textSize,
// color: Colors.black,
// ),
// enableInteractiveSelection: false,
// focusNode: FocusNode(),
// onChanged: (String res) {
// if (res.length > 0) {
// FocusNode node = textFieldArr[3].focusNode;
// FocusScope.of(context).requestFocus(node);
// } else if (res.isEmpty) {
// FocusNode node = textFieldArr[1].focusNode;
// FocusScope.of(context).requestFocus(node);
// }
// textSlotChar[2]=res;
// },
// textAlign: TextAlign.center,
// decoration: InputDecoration(
// counterText: "",
// enabledBorder: widget.inputBorder,
// focusedBorder: widget.inputBorder),
// onSubmitted: (text) {},
// );
// textFieldArr[3] = TextField(
// maxLength: 1,
// keyboardType: TextInputType.number,
// cursorColor: Colors.transparent,
// style: TextStyle(
// fontWeight: FontWeight.bold,
// fontSize: widget.textSize,
// color: Colors.black,
// ),
// enableInteractiveSelection: false,
// focusNode: FocusNode(),
// onChanged: (String res) {
// if (res.length > 0) {
// FocusNode node = textFieldArr[4].focusNode;
// FocusScope.of(context).requestFocus(node);
// } else if (res.isEmpty) {
// FocusNode node = textFieldArr[2].focusNode;
// FocusScope.of(context).requestFocus(node);
// }
// textSlotChar[3]=res;
// },
// textAlign: TextAlign.center,
// decoration: InputDecoration(
// counterText: "",
// enabledBorder: widget.inputBorder,
// focusedBorder: widget.inputBorder),
// onSubmitted: (text) {},
// );
// textFieldArr[4] = TextField(
// maxLength: 1,
// keyboardType: TextInputType.number,
// cursorColor: Colors.transparent,
// style: TextStyle(
// fontWeight: FontWeight.bold,
// fontSize: widget.textSize,
// color: Colors.black,
// ),
// enableInteractiveSelection: false,
// focusNode: FocusNode(),
// onChanged: (String res) {
// if (res.isEmpty) {
// FocusNode node = textFieldArr[3].focusNode;
// FocusScope.of(context).requestFocus(node);
// }
// textSlotChar[4]=res;
// },
// textAlign: TextAlign.center,
// decoration: InputDecoration(
// counterText: "",
// enabledBorder: widget.inputBorder,
// focusedBorder: widget.inputBorder),
// onSubmitted: (text) {},
// );
// }
// @override
// Widget build(BuildContext context) {
// // TODO: implement build
// return Row(
// mainAxisSize: MainAxisSize.min,
// mainAxisAlignment: MainAxisAlignment.center,
// children: <Widget>[
// ConstrainedBox(
// constraints: BoxConstraints(maxWidth: 45, maxHeight: 60),
// child: textFieldArr[0]),
// SizedBox(height: 80, width: 10),
// ConstrainedBox(
// constraints: BoxConstraints(maxWidth: 45, maxHeight: 60),
// child: textFieldArr[1]),
// SizedBox(height: 80, width: 10),
// ConstrainedBox(
// constraints: BoxConstraints(maxWidth: 45, maxHeight: 60),
// child: textFieldArr[2]),
// SizedBox(height: 80, width: 10),
// ConstrainedBox(
// constraints: BoxConstraints(maxWidth: 45, maxHeight: 60),
// child: textFieldArr[3]),
// SizedBox(height: 80, width: 10),
// ConstrainedBox(
// constraints: BoxConstraints(maxWidth: 45, maxHeight: 60),
// child: textFieldArr[4]),
// ],
// );
// }
// }
// class CustomRectInputBorder extends InputBorder {
// CustomRectInputBorder({
// double textSize = 0.0,
// int textLength,
// BorderSide borderSide = const BorderSide(),
// }) : super(
// textSize: textSize, textLength: textLength, borderSide: borderSide);
// double get offsetX => textTrueWidth * 0.3;
// double get offsetY => textTrueWidth * 0.3;
// @override
// void paint(
// Canvas canvas,
// Rect rect, {
// double gapStart,
// double gapExtent = 0.0,
// double gapPercentage = 0.0,
// TextDirection textDirection,
// }) {
// Rect fixRect = Rect.fromLTWH(rect.left, rect.top, rect.right, rect.bottom);
// canvas.drawRect(fixRect, borderSide.toPaint());
// }
// }
// abstract class InputBorder extends UnderlineInputBorder {
// double textSize;
// int textLength;
// double textTrueWidth;
// final double startOffset;
// InputBorder({
// this.textSize = 0.0,
// this.textLength,
// BorderSide borderSide = const BorderSide(),
// }) : startOffset = 0,
// super(borderSide: borderSide) {
// calculateTextWidth();
// }
// void calculateTextWidth() {
// // 测量单个数字实际长度
// var paragraph = ui.ParagraphBuilder(ui.ParagraphStyle(fontSize: textSize))
// ..addText("0");
// var p = paragraph.build()
// ..layout(ui.ParagraphConstraints(width: double.infinity));
// textTrueWidth = p.minIntrinsicWidth;
// }
// }
>>>>>>>
dev
lib/main.dart
View file @
6ad9b300
...
@@ -19,17 +19,7 @@ class _MyAppState extends State<MyApp> {
...
@@ -19,17 +19,7 @@ class _MyAppState extends State<MyApp> {
super
.
initState
();
super
.
initState
();
FlutterBoost
.
singleton
.
registerPageBuilders
({
FlutterBoost
.
singleton
.
registerPageBuilders
({
'first'
:
(
pageName
,
params
,
_
)
=>
FirstRouteWidget
(),
'second'
:
(
pageName
,
params
,
_
)
=>
SecondRouteWidget
(),
'tab'
:
(
pageName
,
params
,
_
)
=>
TabRouteWidget
(),
'flutterFragment'
:
(
pageName
,
params
,
_
)
=>
FragmentRouteWidget
(
params
),
'comment_suggest'
:
(
pageName
,
params
,
_
)
=>
CommentSuggest
(
params
),
'comment_suggest'
:
(
pageName
,
params
,
_
)
=>
CommentSuggest
(
params
),
///可以在native层通过 getContainerParams 来传递参数
'flutterPage'
:
(
pageName
,
params
,
_
)
{
print
(
"flutterPage params:
$params
"
);
return
FlutterRouteWidget
();
},
});
});
FlutterBoost
.
handleOnStartPage
();
FlutterBoost
.
handleOnStartPage
();
...
@@ -38,54 +28,12 @@ class _MyAppState extends State<MyApp> {
...
@@ -38,54 +28,12 @@ class _MyAppState extends State<MyApp> {
@override
@override
Widget
build
(
BuildContext
context
)
{
Widget
build
(
BuildContext
context
)
{
return
MaterialApp
(
return
MaterialApp
(
title:
'Flutter Boost example'
,
title:
'Flutter Boost example'
,
debugShowCheckedModeBanner:
false
,
home:
CommentSuggest
({
'cookie'
:
'124'
}),
initialRoute:
'/test'
,
//调试的时候可以打开
routes:
{
'/'
:
(
context
)
=>
CommentSuggest
({
'cookie'
:
'124'
}),
},
//调试的时候可以打开
builder:
FlutterBoost
.
init
(
postPush:
_onRoutePushed
),
theme:
new
ThemeData
(
primaryColor:
Colors
.
white
,
backgroundColor:
Color
(
0xFFEFEFEF
),
accentColor:
Color
(
0xFF888888
),
textTheme:
TextTheme
(
//设置Material的默认字体样式
body1:
TextStyle
(
color:
Color
(
0xFF888888
),
fontSize:
16.0
),
),
iconTheme:
IconThemeData
(
color:
Color
(
0xFFEFEFEF
),
size:
35.0
,
),
),
);
);
// 我试了只写 home 是 OK 的
// 我试了 routes,是 OK 的
// 我把 build 删除了,是 OK 的
}
}
void
_onRoutePushed
(
String
pageName
,
String
uniqueId
,
Map
params
,
Route
route
,
Future
_
)
{
// List<OverlayEntry> newEntries = route.overlayEntries
// .map((OverlayEntry entry) => OverlayEntry(
// builder: (BuildContext context) {
// final pageWidget = entry.builder(context);
// return Stack(
// children: <Widget>[
// pageWidget,
// Positioned(
// child: Text(
// "pageName:$pageName\npageWidget:${pageWidget.toStringShort()}",
// style: TextStyle(fontSize: 12.0, color: Colors.red),
// ),
// left: 8.0,
// top: 8.0,
// )
// ],
// );
// },
// opaque: entry.opaque,
// maintainState: entry.maintainState))
// .toList(growable: true);
//
// route.overlayEntries.clear();
// route.overlayEntries.addAll(newEntries);
}
}
}
pubspec.lock
View file @
6ad9b300
...
@@ -7,7 +7,7 @@ packages:
...
@@ -7,7 +7,7 @@ packages:
name: async
name: async
url: "https://pub.flutter-io.cn"
url: "https://pub.flutter-io.cn"
source: hosted
source: hosted
version: "2.
1
.0"
version: "2.
2
.0"
boolean_selector:
boolean_selector:
dependency: transitive
dependency: transitive
description:
description:
...
@@ -49,7 +49,7 @@ packages:
...
@@ -49,7 +49,7 @@ packages:
name: dio
name: dio
url: "https://pub.flutter-io.cn"
url: "https://pub.flutter-io.cn"
source: hosted
source: hosted
version: "2.1.
3
"
version: "2.1.
5
"
flutter:
flutter:
dependency: "direct main"
dependency: "direct main"
description: flutter
description: flutter
...
@@ -103,7 +103,7 @@ packages:
...
@@ -103,7 +103,7 @@ packages:
name: quiver
name: quiver
url: "https://pub.flutter-io.cn"
url: "https://pub.flutter-io.cn"
source: hosted
source: hosted
version: "2.0.
2
"
version: "2.0.
3
"
sky_engine:
sky_engine:
dependency: transitive
dependency: transitive
description: flutter
description: flutter
...
@@ -150,7 +150,7 @@ packages:
...
@@ -150,7 +150,7 @@ packages:
name: test_api
name: test_api
url: "https://pub.flutter-io.cn"
url: "https://pub.flutter-io.cn"
source: hosted
source: hosted
version: "0.2.
4
"
version: "0.2.
5
"
typed_data:
typed_data:
dependency: transitive
dependency: transitive
description:
description:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment