Skip to content

Commit a8862ac

Browse files
authored
Merge branch 'syncfusion:main' into NumericUpDown-Improvements
2 parents 4c07559 + 5be3ed7 commit a8862ac

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ Contributions are welcome! If you'd like to contribute, please check out our [co
240240

241241
See the [Development Guide](./.github/DEVELOPMENT.md) for more details about this repository and project structure.
242242

243-
You can see the full list of contributors [here](https://github.com/syncfusion/maui-toolkit/graphs/contributors)
243+
<a href="https://github.com/syncfusion/maui-toolkit/graphs/contributors">
244+
<img src="https://contrib.rocks/image?repo=syncfusion/maui-toolkit" />
245+
</a>
244246

245247
## About Syncfusion®
246248
Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion® has more than 29,000 customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

maui/src/BottomSheet/SfBottomSheet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ public partial class SfBottomSheet : SfView, IParentThemeElement
338338
typeof(bool),
339339
typeof(SfBottomSheet),
340340
false,
341-
BindingMode.Default,
341+
BindingMode.TwoWay,
342342
propertyChanged: OnIsOpenPropertyChanged);
343343

344344
// Appearance (continued)

maui/tests/Syncfusion.Maui.Toolkit.UnitTest/Navigation/SfTabViewUnitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3484,7 +3484,7 @@ public void TestVelocityValueCheck()
34843484
var value1 = GetPrivateField(horizontal, "_velocityX");
34853485
Assert.NotNull(value1);
34863486
double val = (double)value1;
3487-
Assert.Equal(0.15657, Math.Round(val, 5));
3487+
Assert.Equal(0.16, Math.Round(val, 2));
34883488
}
34893489

34903490
[Fact]

0 commit comments

Comments
 (0)