Skip to content

Commit 6fd4f85

Browse files
authored
Update README.md
Documentation imrovements
1 parent 6bc0acf commit 6fd4f85

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Fast and lightweight skeleton framework for SwiftUI!
66

77
## How to use
88

9-
We use simple system with environment to pass information about skeleton across all views, but you should tell your layout where and how it should display. Like example:
9+
We use a simple system with environment to pass information about the skeleton across all the views, but you should tell your layout where and how it should be displayed. Some examples:
1010

1111
```swift
1212

@@ -29,7 +29,7 @@ struct ContentView: View {
2929
}
3030
```
3131

32-
But what if you want to design you skeleton? For your help we create a modifiers
32+
But what if you want to design your own skeleton? You can do so with modifiers:
3333

3434
```swift
3535

@@ -39,7 +39,7 @@ Text("Some title")
3939

4040
```
4141

42-
And what if you want to use a custom style or animation, for example? You can do it! Just pass extra arguments in your `setSkeleton` method:
42+
And what if for example, you want to use a custom style or animation ? Its easy! Just use the extra arguments in your `setSkeleton` method:
4343

4444

4545
```swift
@@ -64,7 +64,7 @@ struct ContentView {
6464

6565
```
6666

67-
Also, you can disable skeleton in your child view, when call `unskeletonable` method
67+
To disable the skeleton in your child views just call the `unskeletonable` method
6868

6969
```swift
7070

@@ -88,7 +88,7 @@ struct ContentView: View {
8888

8989
```
9090

91-
EasySkeleton greate fit to work with ForEach loop. You can apply native ForEach and modify it with `skeletonForEach` modifier:
91+
EasySkeleton it a great fit to work with ForEach loops. You can apply the native ForEach and modify it with the `skeletonForEach` modifier:
9292

9393
```swift
9494
struct NewsView: View {
@@ -104,7 +104,7 @@ struct NewsView: View {
104104
}
105105
```
106106

107-
And last, but not least, the main killer feature is reading your skeleton state on the fly using Environment feature!
107+
And last, but not least! The main killer feature: Reading your skeleton state on the fly using Environment feature!
108108

109109
```swift
110110

0 commit comments

Comments
 (0)