Skip to content
/ Conifer Public

A framework for designing declarative, contextual, complex tree structures in Swift

Notifications You must be signed in to change notification settings

ctxppc/Conifer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Conifer framework

Conifer is a framework for building and manipulating declarative, contextual, complex tree structures in Swift. It provides a domain-specific language for expressing hierarchical data (e.g., user interface elements) as well as tools to conveniently transform this data (e.g., to HTML elements).

struct Introduction : Component {
	var body: some Component {
		Heading {
			Text(value: "Introduction")
		}
		Paragraph {
			Text(value: "This page aims to introduce the reader to the science of dendrology.")
		}
	}
}

Conifer's main use is as part of other frameworks or libraries, such as web application frameworks or declarative data structure models.

Documentation

  1. [Components](Documentation/1 Components.md)
  2. [Shadows](Documentation/2 Shadows.md)
  3. [Dependencies](Documentation/3 Dependencies.md)

About

A framework for designing declarative, contextual, complex tree structures in Swift

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages