Skip to content

Commit 8bee5a6

Browse files
committed
Add support for border-bottom/left/right/top, margin, margin-bottom/left/right/top, padding, padding-bottom/left/right/top
1 parent b785705 commit 8bee5a6

File tree

3 files changed

+252
-14
lines changed

3 files changed

+252
-14
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ Add the following to your `pubspec.yaml` file:
123123
## Currently Supported Inline CSS Attributes:
124124
| | | | | | | |
125125
|------------------|--------|------------|----------|--------------|------------------------|------------|
126-
|`background-color`| `border` | `color`| `direction`| `display`| `font-family`| `font-feature-settings` |
127-
| `font-size`|`font-style` | `font-weight`| `line-height` | `list-style-type` | `list-style-position`|`padding` |
128-
| `margin`| `text-align`| `text-decoration`| `text-decoration-color`| `text-decoration-style`| `text-shadow` | |
126+
|`background-color`| `border` (including specific directions) | `color`| `direction`| `display`| `font-family`| `font-feature-settings` |
127+
| `font-size`|`font-style` | `font-weight`| `line-height` | `list-style-type` | `list-style-position`|`padding` (including specific directions) |
128+
| `margin` (including specific directions) | `text-align`| `text-decoration`| `text-decoration-color`| `text-decoration-style`| `text-shadow` | |
129129

130130
Don't see a tag or attribute you need? File a feature request or contribute to the project!
131131

example/lib/generated_plugin_registrant.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@
44

55
// ignore_for_file: lines_longer_than_80_chars
66

7-
import 'package:url_launcher_web/url_launcher_web.dart';
87
import 'package:video_player_web/video_player_web.dart';
98
import 'package:wakelock_web/wakelock_web.dart';
109

1110
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
1211

1312
// ignore: public_member_api_docs
1413
void registerPlugins(Registrar registrar) {
15-
UrlLauncherPlugin.registerWith(registrar);
1614
VideoPlayerPlugin.registerWith(registrar);
1715
WakelockWeb.registerWith(registrar);
1816
registrar.registerMessageHandler();

0 commit comments

Comments
 (0)