You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Translation/src/index.tsx

47 lines
1023 B

import {
Renderer,
View,
Text,
Window,
Image,
} from "@nodegui/react-nodegui";
import path from "path";
import React from "react";
import { AspectRatioMode } from "@nodegui/nodegui";
import imageUrl from "../assets/nodegui.jpg";
const distImgUrl = path.resolve(__dirname, imageUrl);
const minSize = {width: 500, height: 400};
const App = () => {
return (
<Window minSize={minSize} styleSheet={styleSheet}>
<View id="container">
<Text style="font-size: 15px; font-weight: bold; margin-bottom: 20px;">Hello World</Text>
<Image
style={imageStyle}
src={distImgUrl}
aspectRatioMode={AspectRatioMode.KeepAspectRatio}
/>
</View>
</Window>
);
};
const imageStyle = `
height: "100px";
width: "100px";
qproperty-alignment: 'AlignHCenter';
`;
const styleSheet = `
#container {
flex: 1;
flex-direction: column;
min-height: '100%';
align-items: 'center';
justify-content: 'center';
}
`;
Renderer.render(<App />);