언어는 C#이고 iOS 에뮬레이터로 실행한 결과입니다.
using Xamarin.Forms;
namespace Hello30
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new Hello30Page
{
Content = new StackLayout
{
VerticalOptions = LayoutOptions.Center,
Children = {
new Label {
HorizontalTextAlignment = TextAlignment.Center,
Text = "자마린에 오신 것을 환영"
}
}
}
};
}
protected override void OnStart()
{
// Handle when your app starts
}
protected override void OnSleep()
{
// Handle when your app sleeps
}
protected override void OnResume()
{
// Handle when your app resumes
}
}
}
테스트 클라우드나 에저 환경과 연계해서 서버 사이드를 쉽게 만들 수 있다는 것도 강점입니다. 아무래도 과정 하나 만들어야 할 듯...
댓글 없음:
댓글 쓰기
참고: 블로그의 회원만 댓글을 작성할 수 있습니다.