Skip to content

Pelican is a XML layout compiler for web , it compiles simple XML to responsive HTML code, it is inspired by Android layout XML which is very easy and simple to develop complex Layout for Android apps , i hope this will also help web developer to create complex layouts with ease like developing Android apps

Notifications You must be signed in to change notification settings

subham008/Pelican

Repository files navigation

This Project let developers write a layout in xml which is far simpler than HTML

sample xml code

<?xml version="1.0" encoding="UTF-8"?>
<root>
    <title>sample</title>
    <LinearLayout
        width="400px"
        height="match_parent"
        orientation="vertical"
        background="green"
        gravity="centre"
    >
      <Button
        id="ok_but"
        width="wrap_content"
        height="wrap_content"
        text="ok"
              />

    <LinearLayout
       width="30vh"
       height="20vh"
       orientation="horizontal"
       background="blue"
    >
        <Button
           id="del_but"
           width="wrap_content"
           height="wrap_content"
           text="ok"
             />

        <Button
            id="del_but"
            width="wrap_content"
            height="wrap_content"
            text="ok"
           />
   </LinearLayout>
</LinearLayout>
</root>

it will create a responsive view like below

expected_image

About

Pelican is a XML layout compiler for web , it compiles simple XML to responsive HTML code, it is inspired by Android layout XML which is very easy and simple to develop complex Layout for Android apps , i hope this will also help web developer to create complex layouts with ease like developing Android apps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published