-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<UIView layout="flex:1" attr="bgColor:white"> | ||
<UIView layout="height:40,paddingLeft:14,paddingRight:14,justifyContent:center" attr="bgColor:#f6f6f6"> | ||
<UITextField name="_pathLabel" attr="fontSize:14,color:#157efb"/> | ||
</UIView> | ||
|
||
<UIView layout="height:50,paddingLeft:14,paddingRight:14,flexDirection:row,justifyContent:space-around,alignItems:center" attr="bgColor:#f6f6f6"> | ||
<FlexTouchView onPress="onGoUp" layout="width:20%,height:35,justifyContent:center,alignItems:center" attr="underlayColor:darkGray,bgColor:#e5e9ea,borderRadius:8"> | ||
<UILabel attr="fontSize:14,color:#157efb,linesNum:0,text:@goup"/> | ||
</FlexTouchView> | ||
<FlexTouchView onPress="onGoHome" layout="width:20%,height:35,justifyContent:center,alignItems:center" attr="underlayColor:darkGray,bgColor:#e5e9ea,borderRadius:8"> | ||
<UILabel attr="fontSize:14,color:#157efb,linesNum:0,text:@gohome"/> | ||
</FlexTouchView> | ||
<FlexTouchView onPress="onRefresh" layout="width:20%,height:35,justifyContent:center,alignItems:center" attr="underlayColor:darkGray,bgColor:#e5e9ea,borderRadius:8"> | ||
<UILabel attr="fontSize:14,color:#157efb,linesNum:0,text:@refresh"/> | ||
</FlexTouchView> | ||
</UIView> | ||
|
||
<UITableView name="_table" layout="flex:1" attr="bgColor:white"/> | ||
|
||
<UIView layout="height:40,paddingLeft:14,paddingRight:14,justifyContent:center" attr="bgColor:#f6f6f6"> | ||
<UILabel name="_statusBar" layout="height:40,marginLeft:14,marginRight:14" attr="fontSize:14,color:#157efb,linesNum:0,text:空闲!"/> | ||
</UIView> | ||
</UIView> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* Copyright (c) 2017-present, zhenglibao, Inc. | ||
* email: [email protected] | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the MIT-style license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
#import "FlexBaseVC.h" | ||
|
||
@interface FlexHttpVC : FlexBaseVC | ||
|
||
@property(nonatomic,copy) NSString* url; | ||
|
||
+(void)presentInVC:(UIViewController*)parentVC; | ||
|
||
@end |