packages.flutter
packages.flutter copied to clipboard
flutter pub run pdfx:install_web not working
Describe the bug
my web/index.html looks like <body style="height: 100vh; margin: 0">
Your script looks for <body> and replace it. You need to fix it by looking for <body, not <body>
To Reproduce Steps to reproduce the behavior:
- Go to web/index.html
- Replace
<body>with<body style="height: 100vh; margin: 0"> - run script
flutter pub run pdfx:install_web - Now your above mentioned script wont change anything on web/index.html
Expected behavior
your js script should be added after <body style="height: 100vh; margin: 0">