Skip to content
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

Add prop to Bar to animate only when progress is increasing #43

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
fa22375
Add prop to Bar to animate only when progress is increasing
dlajarretie Feb 9, 2017
a10154d
Update package.json
dlajarretie Feb 9, 2017
be78ac4
Update package.json
dlajarretie Feb 9, 2017
02b9ce1
Bump Example to React Native 0.44
oblador May 3, 2017
a84c31b
Fix RN 0.43+ compatibility by not using direction defaults. Fixes #52
oblador May 3, 2017
b28558a
Import PropTypes from separate package
oblador May 4, 2017
956afe3
Release 3.2.1
oblador May 4, 2017
3791527
Add `strokeCap` prop for `Progress.Circle` (#45)
mikehobi Jul 3, 2017
633e0da
Add automatic flexbox styling to Progress.Bar using width={null}
oblador Jul 3, 2017
2d1bb29
Try to fix issue with android sometimes showing full progress for 0
oblador Jul 3, 2017
d765617
Release 3.3.0
oblador Jul 3, 2017
025960e
Fix prop types (#68)
developer239 Jul 20, 2017
c32ee28
Add strokeCap prop to CircleSnail (#72)
Jul 31, 2017
fce0e1a
Use ViewPropTypes instead of View.propTypes, as it is deprecated. Fal…
jonkessler Jul 31, 2017
c1db056
Fix strokeCap prop not being passed to foreground arc from /Circle.js…
byronhallett Aug 2, 2017
3d7b488
Add native driver support for Bar and smooth animation (#57)
nerdmed Aug 22, 2017
b6ab3ad
Bump example to RN 0.47.2
oblador Aug 22, 2017
0556a83
Refactor animationOptions into two props
oblador Aug 22, 2017
e26623b
Release 3.4.0
oblador Aug 22, 2017
31a6b34
Add prop to Bar to animate only when progress is increasing
dlajarretie Feb 9, 2017
6154121
Update package.json
dlajarretie Feb 9, 2017
bd47510
Update package.json
dlajarretie Feb 9, 2017
c3c9aae
merged 3.4.0
JulienNoble Oct 10, 2017
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
Prev Previous commit
Next Next commit
Fix prop types (#68)
developer239 authored and oblador committed Jul 20, 2017
commit 025960e5497922d74670b4665b7e13f92e32f5de
2 changes: 1 addition & 1 deletion Circle.js
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ export class ProgressCircle extends Component {
borderColor: PropTypes.string,
borderWidth: PropTypes.number,
color: PropTypes.string,
children: React.PropTypes.node,
children: PropTypes.node,
direction: PropTypes.oneOf(['clockwise', 'counter-clockwise']),
formatText: PropTypes.func,
indeterminate: PropTypes.bool,