Skip to content

Commit ab878da

Browse files
committed
w
1 parent 56e743f commit ab878da

File tree

5 files changed

+37
-23
lines changed

5 files changed

+37
-23
lines changed

LICENSE

+22-17
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
1-
MIT License
1+
Copyright (c) 2019, Doerme
2+
All rights reserved.
23

3-
Copyright (c) 2018 Liew Jun Tung
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
46

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
7+
1. Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
2. Redistributions in binary form must reproduce the above copyright notice,
10+
this list of conditions and the following disclaimer in the documentation
11+
and/or other materials provided with the distribution.
1112

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
13+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1423

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
24+
The views and conclusions contained in the software and documentation are those
25+
of the authors and should not be interpreted as representing official policies,
26+
either expressed or implied, of the FreeBSD Project.

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
# pageview
1+
# ml equipment detail
22

3-
A new Flutter project.
3+
## pageview
4+
![Alt have a look](https://www.jeremypay.com/json/ml_epm_detial2.gif)
5+
6+
## how to use?
7+
```
8+
Navigator.of(context).push(TutorialOverlay(
9+
eqid: 3206, // the detail you need to show first
10+
eqids: [3110, 3206, 3201, 3202] // other detail that can scroll to show
11+
));
12+
```
413

514
## Getting Started
615

lib/equipment/modalroute.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class TutorialOverlay extends ModalRoute<void> {
4343
children: <Widget>[
4444
Container(
4545
width: MediaQuery.of(context).size.width,
46-
height: MediaQuery.of(context).size.height - 100.0,
46+
height: MediaQuery.of(context).size.height - 150.0,
4747
child: EquipmentPageView(eqid: eqid, eqids: eqids),
4848
),
4949
ButtonTheme(

ml_epm_detial2.gif

796 KB
Loading

pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: ml_equitment_detail
22
description: ML equitment detail.
3-
author: Doerme<dw_liangxiaoming@yy.com>
4-
homepage: https://www.yy.com
3+
author: Doerme<doerme@gmail.com>
4+
homepage: https://jeremypay.com
55
# The following defines the version and build number for your application.
66
# A version number is three numbers separated by dots, like 1.2.43
77
# followed by an optional build number separated by a +.
88
# Both the version and the builder number may be overridden in flutter
99
# build by specifying --build-name and --build-number, respectively.
1010
# Read more about versioning at semver.org.
11-
version: 1.0.0+1
11+
version: 1.0.3+1
1212

1313
environment:
1414
sdk: ">=2.0.0-dev.68.0 <3.0.0"

0 commit comments

Comments
 (0)