Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

style:优化文档 合并组件类 #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Parent: Test
ckken merged 1 commit into test from dev-ken
Mar 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
282 changes: 100 additions & 182 deletions readme.md
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -15,217 +15,135 @@
Flutter UI
├─assets 静态资源
├─docs 教程文件
├─widget
├─regular
├─scrollview
...
├─locale 语言包
├─lib dart执行代码
├─components
├─config
├─config 配置文件
├─controller
├─lang
├─page
├─lang 多语言控制类
├─page 路由关联页面
│ ├─component
│ └─mine
├─router
├─store
├─router 路由
├─store 数据管理
│ ├─models
│ └─objects
├─utils
└─widget
├─utils 项目工具类
└─widget 项目组件库
├─animate
│ ├─animatedbuilder
│ ├─animatedbuilder 【✔️ v1.0】
│ ├─animatedcontainer
......
│ ├─animatedcrossfade
│ ├─animateddefaulttextstyle
│ ├─animatedliststate
│ ├─animatedmodalbarrier
│ ├─animatedopacity
│ ├─animatedphysicalmodel
│ ├─animatedpositioned
│ ├─animatedsize
│ ├─animatedwidget
│ ├─animatedwidgetbasestate
│ ├─animationcontroller
│ ├─decoratedboxtransition
│ ├─fadetransition
│ ├─hero
│ ├─positionedtransition
│ ├─rotationtransition
│ ├─scaletransition
│ ├─sizetransition
│ └─slidetransition
├─bulletbox
│ ├─alertdialog
│ ├─bottomsheet
......
│ └─snackbar
│ ├─alertdialog 【✔️ v1.0】
│ ├─bottomsheet 【✔️ v1.0】
│ ├─expansionPanel 【✔️ v1.0】
│ ├─simpledialog 【✔️ v1.0】
│ └─snackbar 【✔️ v1.0】
├─common
│ ├─assetbundle
│ ├─buttonbar
......
│ ├─chip
│ ├─container 【✔️ v1.0】
│ ├─divider 【✔️ v1.0】
│ ├─flatbutton 【✔️ v1.0】
│ ├─icon
│ ├─iconbutton
│ ├─image
│ ├─listtile
│ ├─placeholder
│ ├─raisedbutton
│ ├─rawimage
│ ├─stepper
│ ├─text 【✔️ v1.0】
│ └─tooltip
├─form
│ ├─checkbox
│ ├─checkboxlisttile
......
│ ├─checkbox 【✔️ v1.0】
│ ├─checkboxlisttile 【✔️ v1.0】
│ ├─daypicker 【✔️ v1.0】
│ ├─form
│ ├─formfield
│ ├─radio
│ ├─rawkeyboard
│ ├─slider
│ ├─switch
│ ├─textfield
│ └─textinput
├─gestures
│ ├─absorbpointer
│ ├─dismissible
......
│ └─longpressdraggable
│ ├─dragtarget
│ ├─gesturedetector
│ ├─ignorepointer
│ └─longpressdraggable 【✔️ v1.0】
├─navigator
│ ├─appbar
│ ├─bottomnavigationbar
......
│ ├─drawer
│ ├─floatingactionbutton
│ ├─materialapp
│ ├─navigator
│ ├─popupmenubutton
│ ├─scaffold
│ ├─tabbar
│ ├─tabbarview
│ └─widgetsapp
├─regular
│ ├─align
│ ├─aspectratio
......
│ └─wrap
│ ├─align 【✔️ v1.0】
│ ├─aspectratio 【✔️ v1.0】
│ ├─center 【✔️ v1.0】
│ ├─column 【✔️ v1.0】
│ ├─constrainedbox 【✔️ v1.0】
│ ├─container 【✔️ v1.0】
│ ├─fittedbox 【✔️ v1.0】
│ ├─flow 【✔️ v1.0】
│ ├─layoutbuilder 【✔️ v1.0】
│ ├─listbody 【✔️ v1.0】
│ ├─listview 【✔️ v1.0】
│ ├─padding 【✔️ v1.0】
│ ├─row 【✔️ v1.0】
│ ├─stack 【✔️ v1.0】
│ ├─table 【✔️ v1.0】
│ └─wrap 【✔️ v1.0】
├─scrollview
│ ├─customscrollview
│ ├─gridview
......
│ └─singlechildscrollview
│ ├─customscrollview 【✔️ v1.0】
│ ├─gridview 【✔️ v1.0】
│ ├─listview 【✔️ v1.0】
│ ├─nestedscrollview 【✔️ v1.0】
│ ├─scrollable 【✔️ v1.0】
│ ├─scrollbar 【✔️ v1.0】
│ ├─scrollcontroller 【✔️ v1.0】
│ └─singlechildscrollview 【✔️ v1.0】
└─vision
├─backdropfilter
├─clipoval
......
├─clippath
├─cliprect
├─custompaint
├─decoratedbox
├─fractionaltranslation
├─mediaquery
├─opacity
├─rotatedbox
├─theme
└─transform

├─locale 语言包
```

## 组件进度列表
### animate
1. animationController【✔️ v1.0】
2. animatedbuilder【】
3. animatedcontainer【】
4. animatedcrossfade【】
5. animateddefaulttextstyle【】
6. animatedliststate【】
7. animatedmodalbarrier【】
8. animatedopacity【】
9. animatedphysicalmodel【】
10. animatedpositioned【】
11. animatedsize【】
12. animatedwidget【】
13. animatedwidgetbasestate【】
14. animationcontroller【】
15. decoratedboxtransition【】
16. fadetransition【】
17. hero【】
18. positionedtransition【】
19. rotationtransition【】
20. scaletransition【】
21. sizetransition【】
22. slidetransition【】
```


### bulletbox
1. alertdialog【✔️ v1.0】
2. bottomsheet【✔️ v1.0】
3. expansionPanel【✔️ v1.0】
4. simpledialog【✔️ v1.0】
5. snackbar【✔️ v1.0】

### common

1. assetbundle【】
2. buttonbar【】
3. chip【】
4. container【✔️ v1.0】
5. divider【✔️ v1.0】
6. flatbutton【✔️ v1.0】
7. icon【】
8. iconbutton【】
9. image【】
10. listtile【】
11. placeholder【】
12. raisedbutton【】
13. rawimage【】
14. stepper【】
15. text【✔️ v1.0】
16. tooltip【】


### form

1. checkbox【✔️ v1.0】
2. checkboxlisttile【✔️ v1.0】
3. slider【✔️ v1.0】
4. daypicker【】
5. form【】
6. formfield【】
7. radio【】
8. rawkeyboard【】
9. switch【】
10. textfield【】
11. textinput【】
12. 【】
13. 【】


### gestures

1. absorbpointer【】
2. dismissible【】
3. dragtarget【】
4. gesturedetector【】
5. ignorepointer【】
6. longpressdraggable【✔️ v1.0】


### navigator

1. appbar【】
2. bottomnavigationbar【】
3. drawer【】
4. floatingactionbutton【】
5. materialapp【】
6. navigator【】
7. popupmenubutton【】
8. scaffold【】
9. tabbar【】
10. tabbarview【】
11. widgetsapp【】


### regular

1. align【✔️ v1.0】
2. aspectratio【✔️ v1.0】
3. center【✔️ v1.0】
4. column【✔️ v1.0】
5. constrainedbox【✔️ v1.0】
6. container【✔️ v1.0】
7. fittedbox【✔️ v1.0】
8. flow【✔️ v1.0】
9. layoutbuilder【✔️ v1.0】
10. listbody【✔️ v1.0】
11. listview【✔️ v1.0】
12. padding【✔️ v1.0】
13. row【✔️ v1.0】
14. stack【✔️ v1.0】
15. table【✔️ v1.0】
16. wrap【✔️ v1.0】


### scrollview

1. customscrollview【✔️ v1.0】
2. gridview【✔️ v1.0】
3. listview【✔️ v1.0】
4. nestedscrollview【✔️ v1.0】
5. scrollable【✔️ v1.0】
6. scrollbar【✔️ v1.0】
7. scrollcontroller【✔️ v1.0】
8. singlechildscrollview【✔️ v1.0】
9. 【】
10. 【】
11. 【】
12. 【】


### vision

1. backdropfilter【】
2. clipoval【】
3. clippath【】
4. cliprect【】
5. custompaint【】
6. decoratedbox【】
7. fractionaltranslation【】
8. mediaquery【】
9. opacity【】
10. rotatedbox【】
11. theme【】
12. transform【】

AltStyle によって変換されたページ (->オリジナル) /