Some suggestions
See original GitHub issue- Know the exact size of the PC screen.
You can position it in position
(x, y)
app, with the possibility to put it in the middle of the screen. - To be able to put a full-screen app, at the start of the app if you want. Intercepting the event of change.
- Put the app icon.
- Have a menu like this: https://msdn.microsoft.com/dynimg/IC724998.png
- Instead of using:
render (<Home />);
it would be better to use as semantics / syntax:Export (<Home />);
to stay on the theme with the genre react, render could be confused with the definition of class rendering. - Instead of using:
<App>
it would be better to use as semantics / syntax:<Container> or <View>
to stay in theme with the genre. As a general rule, the App signature is used to assign the name to the class of the basic project. - It would be better to maintain the initial order of the case of the names do not change to maintain the structure of the order ie change:
import {render, Window, App} from 'proton-native';
inimport {render, App, Window} from 'proton-native';
Personally it would be good something like this:import {Export, Container, Window} from 'proton-native';
orimport {Export, View, Window} from 'proton-native';
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
some suggestions or some suggestion? - TextRanch
some suggestions is the most popular phrase on the web. More popular! some suggestions. 1,490,000,000 results on the web. Some examples from the...
Read more >give some suggestions | English examples in context - Ludwig
High quality example sentences with “give some suggestions” in context from reliable sources - Ludwig is the linguistic search engine that helps you...
Read more >Could you please give some suggestions / Could you give me ...
I don't believe I would ever hear a native English speaker say, "Please, can you give me some information." ( But then, never...
Read more >Some suggestions for measuring predictive ... - PubMed
The performance of a prediction or measurement model is often evaluated by computing the correlation coefficient and/or the regression of predictions on ...
Read more >Some suggestions for measuring predictive performance
The performance of a prediction or measurement method is often evaluated by computing the correlation coefficient and/or the regression of predictions on t....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@mischnic : In fact I believe that:
registerComponent (<App />)
be better thanrender (<App />)
in this case.Export
makes less sense thanrender
. When render gets called, it literally renders everything, which is pretty intuitive.This would also be a major breaking change. Render in React is chained also when you have a component in a component. It doesn’t serve any purpose.