-
Notifications
You must be signed in to change notification settings - Fork 641
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
Windows support #171
base: master
Are you sure you want to change the base?
Windows support #171
Conversation
These change adds Windows support to the Pepperoni App Kit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The docs part looks good 👍
If someone having a windows PC could try and see if it works, that would be great 🙂
@@ -0,0 +1,9 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like the vscode configuration file to get javascript intellisense, not sure it should be there. Was it committed on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, forgot to remove it...will remove it.
@anidel thanks for submitting the PR :) Could you rebase on master and resolve the current conflicts before we merge it in? Would also still need to test it properly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed now again and tested the app on windows. It would be great if we could add a travis build config as well for UWP. 2 issues I found so far:
- the app doesn't build because of a bug in react-native-windows 41
ReactTextShadowNode.cs:234
I fixed it by replacing it with the following:
textBlock.FontFamily = _fontFamily != null ? new FontFamily(_fontFamily) : new FontFamily("XamlAutoFontFamily”);
- vector icons are not yet displayed correctly. Might have to be added to build path?
Relates to #63