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.
51 lines
1.2 KiB
51 lines
1.2 KiB
import { Text, Window, hot, View } from "@nodegui/react-nodegui";
|
|
import React from "react";
|
|
import { QIcon } from "@nodegui/nodegui";
|
|
import path from "path";
|
|
import { StepOne } from "./components/stepone";
|
|
import { StepTwo } from "./components/steptwo";
|
|
import nodeguiIcon from "../assets/nodegui.jpg";
|
|
|
|
const minSize = { width: 500, height: 520 };
|
|
const winIcon = new QIcon(path.resolve(__dirname, nodeguiIcon));
|
|
class App extends React.Component {
|
|
render() {
|
|
return (
|
|
<Window
|
|
windowIcon={winIcon}
|
|
windowTitle="Hello 👋🏽"
|
|
minSize={minSize}
|
|
styleSheet={styleSheet}
|
|
>
|
|
<View style={containerStyle}>
|
|
<Text id="welcome-text">Welcome to NodeGui 🐕</Text>
|
|
<Text id="step-1">1. Play around</Text>
|
|
<StepOne />
|
|
<Text id="step-2">2. Debug</Text>
|
|
<StepTwo />
|
|
</View>
|
|
</Window>
|
|
);
|
|
}
|
|
}
|
|
|
|
const containerStyle = `
|
|
flex: 1;
|
|
`;
|
|
|
|
const styleSheet = `
|
|
#welcome-text {
|
|
font-size: 24px;
|
|
padding-top: 20px;
|
|
qproperty-alignment: 'AlignHCenter';
|
|
font-family: 'sans-serif';
|
|
}
|
|
|
|
#step-1, #step-2 {
|
|
font-size: 18px;
|
|
padding-top: 10px;
|
|
padding-horizontal: 20px;
|
|
}
|
|
`;
|
|
|
|
export default hot(App);
|
|
|